Readonly
xReadonly
yReadonly
zStatic
Readonly
DownStatic
Readonly
EastStatic
Readonly
NorthStatic
Readonly
SouthStatic
Readonly
UpStatic
Readonly
WestStatic
Readonly
ZeroStatic
Private
_fromStatic
Private
Readonly
logChecks if the current vector is equal to another vector.
Computes the angle (in radians) between the current vector and another vector.
The angle in radians between the two vectors.
Computes the cross product of the current vector with another vector.
A cross product is a vector that is perpendicular to both vectors.
A new vector representing the cross product.
Computes the distance between the current vector and another vector.
The distance between the two vectors.
Computes the squared distance between the current vector and another vector. This is faster than computing the actual distance and can be useful for comparison purposes.
The squared distance between the two vectors.
Calculates the shortest distance between a point (represented by this Vector3 instance) and a line segment.
This method finds the perpendicular projection of the point onto the line defined by the segment. If this projection lies outside the line segment, then the method calculates the distance from the point to the nearest segment endpoint.
The starting point of the line segment.
The ending point of the line segment.
The shortest distance between the point and the line segment.
Divides the current vector by another vector or scalar.
The updated vector after division.
Computes the dot product of the current vector with another vector.
The dot product of the two vectors.
Checks if the current vector is equal to another vector.
Computes the linear interpolation between the current vector and another vector, when t is in the range [0, 1]. Computes the extrapolation when t is outside this range.
The other vector.
The interpolation factor.
A new vector after performing the lerp operation.
Multiplies the current vector by another vector or scalar.
The updated vector after multiplication.
Computes the projection of the current vector onto another vector.
This method finds how much of the current vector lies in the direction of vector v
.
A new vector representing the projection of the current vector onto v
.
Computes the reflection of the current vector against a normal vector. Useful for simulating light reflections or bouncing objects.
A new vector representing the reflection of the current vector.
Computes the spherical linear interpolation between the current vector and another vector, when t is in the range [0, 1]. Computes the extrapolation when t is outside this range.
The other vector.
The interpolation factor.
A new vector after performing the slerp operation.
Subtracts another vector from the current vector.
The updated vector after subtraction.
Static
fromCreates a new vector from the given values.
Static
from
Adds another vector to the current vector.