note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
VectorSize
Description
Returns the norm (length) of the provided vector.
Name | Description |
---|---|
Float:x | The vector's magnitude on the X axis. |
Float:y | The vector's magnitude on the Y axis. |
Float:z | The vector's magnitude on the Z axis. |
Returns
The norm (length) of the provided vector as a float.
Examples
stock Float:GetDistanceBetweenPoints(Float:x1, Float:y1, Float:z1, Float:x2, Float:y2, Float:z2)
{
return VectorSize(x1-x2, y1-y2, z1-z2);
}
Related Functions
- GetPlayerDistanceFromPoint: Get the distance between a player and a point.
- GetVehicleDistanceFromPoint: Get the distance between a vehicle and a point.
- floatsqroot: Calculate the square root of a floating point value.