Class representing a 3D vector.
x
x component of the vector.
Type: float
float
y
y component of the vector.
z
z component of the vector.
(x, y, z)
Returns a vector that contains the x, y, and z values.
Parameters:
x (float): x component of the vector.
y (float): y component of the vector.
z (float): z component of the vector.
Example Usage:
Last updated 3 months ago
local v = Vector3(1.0, 2.0, 3.0)