Example #1
0
 public Camera(float fieldOfViewDegrees, float aspectRatio, float near, float far)
 {
     Projection = Matrix4X4.CreatePerspective(fieldOfViewDegrees, aspectRatio, near, far);
 }