Creates a chainable API for performing vector operations on a 3D vertex.
The returned VectorChain object allows you to perform a sequence of operations
such as addition, subtraction, scaling, normalization, dot product, cross product,
flipping, and rotation on the initial vertex. Most operations are chainable, enabling
fluent method calls. The value() method returns the current state of the vector.
Creates a chainable API for performing vector operations on a 3D vertex.
The returned
VectorChain
object allows you to perform a sequence of operations such as addition, subtraction, scaling, normalization, dot product, cross product, flipping, and rotation on the initial vertex. Most operations are chainable, enabling fluent method calls. Thevalue()
method returns the current state of the vector.