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