13 references to Dot
System.Numerics (13)
System\Numerics\Matrix4x4.cs (5)
275
float dot = Vector3.
Dot
(rotateAxis, faceDir);
282
dot = Vector3.
Dot
(rotateAxis, zaxis);
1070
result.M41 = -Vector3.
Dot
(xaxis, cameraPosition);
1071
result.M42 = -Vector3.
Dot
(yaxis, cameraPosition);
1072
result.M43 = -Vector3.
Dot
(zaxis, cameraPosition);
System\Numerics\Plane.cs (3)
78
float d = -Vector3.
Dot
(normal, point1);
247
return Vector3.
Dot
(plane.Normal, value) + plane.D;
269
return Vector3.
Dot
(plane.Normal, value);
System\Numerics\Vector3.cs (5)
116
float ls = Vector3.
Dot
(this, this);
135
return Vector3.
Dot
(this, this);
157
float ls = Vector3.
Dot
(difference, difference);
184
return Vector3.
Dot
(difference, difference);
243
float dot = Vector3.
Dot
(vector, normal);