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