7 references to DotProduct
PresentationCore (7)
MS\Internal\Media3D\GeneralTransform2DTo3DTo2D.cs (1)
460double dotProd = Vector3D.DotProduct(normal, dirToCamera);
System\Windows\Media3D\MeshGeometry3D.cs (2)
467double rayDistanceUnnormalized = Vector3D.DotProduct(originalDirection, hitVector); 512double cullSign = -Vector3D.DotProduct(normal, hitVector);
System\Windows\Media3D\ProjectionCamera.cs (3)
84double cx = -Vector3D.DotProduct(xaxis, positionVec); 85double cy = -Vector3D.DotProduct(yaxis, positionVec); 86double cz = -Vector3D.DotProduct(zaxis, positionVec);
System\Windows\Media3D\Vector3D.cs (1)
126double ratio = DotProduct(vector1, vector2);