GetDistanceSquared3D: Difference between revisions
From Onset Developer Wiki
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{Info|Function|Client|1.0}} | {{Info|Function|Client|1.0}} | ||
{{FuncDescription| | {{FuncDescription|Get the distance between points squared in relation to the three dimensions.}} | ||
{{FuncSyntax|GetDistanceSquared3D(x, y, z, x2, y2, z2)}} | {{FuncSyntax|GetDistanceSquared3D(x, y, z, x2, y2, z2)}} |
Revision as of 17:15, 13 December 2019
Description
Get the distance between points squared in relation to the three dimensions.
Syntax
GetDistanceSquared3D(x, y, z, x2, y2, z2)
Parameters
- x
x of the first point. - y
y of the first point. - z
z of the first point. - x2
x of the second point. - y2
y of the second point. - z2
z of the second point.
Return Value
- The square of the distance between the 2 points.
Example
-- code