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