Vector
Vector vector
Fields
Methods
Method
Parameters
Returns
Description
b: Vector
float
Measure the degree of directional similarity between the parameters:
a.X*b.X
+ a.Y*b.Y
+ a.Z*b.Z
b: Vector
Vector
Create a third vector, perpendicular to the parameters:
a.Y*b.Z - a.Z*b.Y
a.Z*b.X - a.X*b.Z
a.X*b.Y - a.Y*b.X
None
Vector
Make a vector unit length:
mag =
Sqrt(v.X^2
+v.Y^2
+v.Z^2)
norm =
Mul(v, 1/mag)
Last updated