コード例 #1
0
ファイル: Camera.cs プロジェクト: krustur/SoftwareRenderer
 public Camera(float fieldOfViewDegrees, float aspectRatio, float near, float far)
 {
     Projection = Matrix4X4.CreatePerspective(fieldOfViewDegrees, aspectRatio, near, far);
 }