7 references to DotProduct
PresentationCore (7)
Core\CSharp\MS\Internal\Media3D\GeneralTransform2Dto3Dto2D.cs (1)
458
double dotProd = Vector3D.
DotProduct
(normal, dirToCamera);
Core\CSharp\System\Windows\Media3D\MeshGeometry3D.cs (2)
472
double rayDistanceUnnormalized = Vector3D.
DotProduct
(originalDirection, hitVector);
517
double cullSign = -Vector3D.
DotProduct
(normal, hitVector);
Core\CSharp\System\Windows\Media3D\ProjectionCamera.cs (3)
85
double cx = -Vector3D.
DotProduct
(xaxis, positionVec);
86
double cy = -Vector3D.
DotProduct
(yaxis, positionVec);
87
double cz = -Vector3D.
DotProduct
(zaxis, positionVec);
Core\CSharp\System\Windows\Media3D\Vector3D.cs (1)
130
double ratio =
DotProduct
(vector1, vector2);