GetDistance3D: Difference between revisions
From Onset Developer Wiki
X7airworker (talk | contribs) No edit summary |
No edit summary |
||
Line 16: | Line 16: | ||
== Example == | == Example == | ||
<syntaxhighlight lang="Lua"> | |||
-- code | |||
<syntaxhighlight> | |||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
[[GetDistanceSquared3D]] | * [[GetDistanceSquared3D]] | ||
[[GetDistance2D]] | * [[GetDistance2D]] |
Revision as of 13:57, 16 November 2019
Description
Gets the distance between to 3 dimensional points.
Syntax
GetDistance3D(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
u of the second point.
Return Value
- The distance between the 2 points.
Example
<syntaxhighlight lang="Lua"> -- code <syntaxhighlight>