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