Vector class, which performs basic 3D vector math operations. Vector3 is one of the core classes of the engine, and includes several built-in helper functions to perform basic vector math operations. Returns a Vector3 with the given components. Returns a new vector with all components in absolute values (i.e. positive). Bounce returns the vector "bounced off" from the given plane, specified by its normal vector. Returns a new vector with all components rounded up. Return the cross product with b. Perform a cubic interpolation between vectors pre_a, a, b, post_b (a is current), by the given amount (t). Return the squared distance (distance minus the last square root) to b. Prefer this function over distance_to if you need to sort vectors or need the squared distance for some formula. Return the distance to b. Return the dot product with b. Returns a new vector with all components rounded down. Returns the inverse of the vector. This is the same as Vector3( 1.0 / v.x, 1.0 / v.y, 1.0 / v.z ) Returns whether the vector is normalized or not. Return the length of the vector. Return the length of the vector, squared. Prefer this function over "length" if you need to sort vectors or need the squared length for some formula. Linearly interpolates the vector to a given one (b), by the given amount (t). Returns AXIS_X, AXIS_Y or AXIS_Z depending on which axis is the largest. Returns AXIS_X, AXIS_Y or AXIS_Z depending on which axis is the smallest. Return a copy of the normalized vector to unit length. This is the same as v / v.length(). Return the outer product with b. Reflects the vector along the given plane, specified by its normal vector. Rotates the vector around some axis by phi radians. The axis must be a normalized vector. Slide returns the component of the vector along the given plane, specified by its normal vector. Return a copy of the vector, snapped to the lowest neared multiple. Return a diagonal matrix with the vector as main diagonal. X component of the vector. Y component of the vector. Z component of the vector. Enumerated value for the X axis. Returned by functions like max_axis or min_axis. Enumerated value for the Y axis. Enumerated value for the Z axis.