33 references to M3DUtil
PresentationCore (33)
MS\Internal\Media3D\GeneralTransform2DTo3DTo2D.cs (5)
124_worldTransformation = M3DUtil.GetWorldTransformationMatrix(visual3D); 547if (M3DUtil.IsPointInTriangle(visEdgeStart, uv, p, out outputPoint)) 553if (M3DUtil.IsPointInTriangle(visEdgeEnd, uv, p, out outputPoint)) 563if (M3DUtil.IsPointInTriangle(visEdgeStart, uv, p, out outputPoint1) && 564M3DUtil.IsPointInTriangle(visEdgeEnd, uv, p, out outputPoint2))
MS\Internal\Media3D\M3DUtil.cs (3)
98M3DUtil.AddPointToBounds(ref p, ref newBounds); 387camera.GetProjectionMatrix(M3DUtil.GetAspectRatio(viewport.Size)) * 388M3DUtil.GetHomogeneousToViewportTransform3D(viewport);
System\Windows\Media3D\MatrixCamera.cs (1)
80Point np = M3DUtil.GetNormalizedPoint(p, viewSize);
System\Windows\Media3D\MeshGeometry3D.cs (3)
452Point3D pointHit = M3DUtil.Interpolate(ref v0, ref v1, ref v2, ref barycentric); 532_cachedBounds = M3DUtil.ComputeAxisAlignedBoundingBox(Positions); 558Rect3D actualBounds = M3DUtil.ComputeAxisAlignedBoundingBox(Positions);
System\Windows\Media3D\Model3D.cs (1)
102return M3DUtil.ComputeTransformedAxisAlignedBoundingBox(ref innerBounds, Transform);
System\Windows\Media3D\OrthographicCamera.cs (3)
91Point np = M3DUtil.GetNormalizedPoint(p, viewSize); 93double aspectRatio = M3DUtil.GetAspectRatio(viewSize); 117M3DUtil.ComputeTransformedAxisAlignedBoundingBox(
System\Windows\Media3D\PerspectiveCamera.cs (4)
66double fov = M3DUtil.DegreesToRadians(FieldOfView); 106double fov = M3DUtil.DegreesToRadians(FieldOfView); 114Point np = M3DUtil.GetNormalizedPoint(p, viewSize); 124double aspectRatio = M3DUtil.GetAspectRatio(viewSize);
System\Windows\Media3D\Transform3D.cs (1)
124return M3DUtil.ComputeTransformedAxisAlignedBoundingBox(ref rect, this);
System\Windows\Media3D\Vector3D.cs (1)
174return M3DUtil.RadiansToDegrees(theta);
System\Windows\Media3D\Viewport2DVisual3D.cs (2)
79if (M3DUtil.IsPointInTriangle(point, uv, p, out point3D)) 120if (M3DUtil.IsPointInTriangle(point, uv, p, out point3D))
System\Windows\Media3D\Viewport3DVisual.cs (4)
500double aspectRatio = M3DUtil.GetAspectRatio(Viewport.Size); 509point2D *= M3DUtil.GetHomogeneousToViewportTransform(Viewport); 569double aspectRatio = M3DUtil.GetAspectRatio(viewport.Size); 572Matrix homoToLocal = M3DUtil.GetHomogeneousToViewportTransform(viewport);
System\Windows\Media3D\Visual3D.cs (5)
862return M3DUtil.ComputeTransformedAxisAlignedBoundingBox(ref bounds, Transform); 1069Rect3D cachedBounds = M3DUtil.ComputeTransformedAxisAlignedBoundingBox(ref _bboxSubgraph, Transform); 1098return M3DUtil.ComputeTransformedAxisAlignedBoundingBox(ref currentSubgraphBounds, Transform); 1130bboxSubgraph = M3DUtil.ComputeTransformedAxisAlignedBoundingBox(ref _bboxSubgraph, Transform); 1797if (!M3DUtil.TryTransformToViewport3DVisual(this, out containingViewport, out projectionTransform))