3 overrides of GetProjectionMatrix
PresentationCore (3)
Core\CSharp\System\Windows\Media3D\MatrixCamera.cs (1)
84internal override Matrix3D GetProjectionMatrix(double aspectRatio) { return ProjectionMatrix; }
Core\CSharp\System\Windows\Media3D\OrthographicCamera.cs (1)
77internal override Matrix3D GetProjectionMatrix(double aspectRatio)
Core\CSharp\System\Windows\Media3D\PerspectiveCamera.cs (1)
99internal override Matrix3D GetProjectionMatrix(double aspectRatio)
3 references to GetProjectionMatrix
PresentationCore (3)
Core\CSharp\MS\Internal\Media3D\M3DUtil.cs (1)
392camera.GetProjectionMatrix(M3DUtil.GetAspectRatio(viewport.Size)) *
Core\CSharp\System\Windows\Media3D\Viewport3DVisual.cs (2)
527Matrix3D viewProjMatrix = camera.GetViewMatrix() * camera.GetProjectionMatrix(aspectRatio); 592Matrix3D viewProjMatrix = camera.GetViewMatrix() * camera.GetProjectionMatrix(aspectRatio);