7 references to DotProduct
PresentationCore (7)
MS\Internal\Media3D\GeneralTransform2DTo3DTo2D.cs (1)
443double dotProd = Vector3D.DotProduct(normal, dirToCamera);
System\Windows\Media3D\MeshGeometry3D.cs (2)
461double rayDistanceUnnormalized = Vector3D.DotProduct(originalDirection, hitVector); 506double cullSign = -Vector3D.DotProduct(normal, hitVector);
System\Windows\Media3D\ProjectionCamera.cs (3)
82double cx = -Vector3D.DotProduct(xaxis, positionVec); 83double cy = -Vector3D.DotProduct(yaxis, positionVec); 84double cz = -Vector3D.DotProduct(zaxis, positionVec);
System\Windows\Media3D\Vector3D.cs (1)
122double ratio = DotProduct(vector1, vector2);