Zum Hauptinhalt springen

VectorSize

Description

Returns the norm (length) of the provided vector.

NameDescription
Float:xThe vector's magnitude on the X axis.
Float:yThe vector's magnitude on the Y axis.
Float:zThe 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);
}