Data / Vectors
4 nodes in this category.
Vector
data/vector
Creates a 3D vector from X, Y, Z components.
In: x, y, z
Out: vector
Vector Components
data/vector_components
Decomposes a vector into its X, Y, Z components and length.
In: vector
Out: x, y, z, length
Vector Ops
data/vector_ops
Performs operations on one or two vectors: ADD, SUBTRACT, SCALE, NORMALIZE, DOT, CROSS, LENGTH, DISTANCE.
In: vectorA, vectorB, scalar
Out: result, scalar
Vector Between
data/vector_between
Computes the vector from one location to another, along with distance.
In: from, to
Out: vector, normalized, distance, distanceSquared