math/Dist
From Garry's Mod
(Difference between revisions)
m (Also menu state) |
m (update source line, minor phrasing changes) |
||
Line 1: | Line 1: | ||
{{Func | {{Func | ||
− | |||
− | |||
|Description={{Deprecated|You should use {{LibraryFunction|math|Distance}} instead}} | |Description={{Deprecated|You should use {{LibraryFunction|math|Distance}} instead}} | ||
− | Returns the difference between two points in 2D space. | + | Returns the difference between two points in 2D space. Alias of {{LibraryFunction|math|Distance}}. |
|Realm=Shared and Menu | |Realm=Shared and Menu | ||
|IsClass=No | |IsClass=No | ||
|File=lua/includes/extensions/math.lua | |File=lua/includes/extensions/math.lua | ||
− | |Line= | + | |Line=11 |
}} | }} | ||
{{Arg | {{Arg |
Latest revision as of 16:35, 15 November 2016
Contents |
Description
This feature is deprecated.
You should avoid using it as it may be removed in a future version.
You should use math.Distance instead
You should avoid using it as it may be removed in a future version.
You should use math.Distance instead
Returns the difference between two points in 2D space. Alias of math.Distance.
Arguments
number x1
X position of first point
Arguments
number y1
Y position of first point
Arguments
number x2
X position of second point
Arguments
number y2
Y position of second point
Returns
Distance between the two points.
Examples
Example
Demonstrates the use of this function.
print( math.Distance( 1, 2, 5, 6 ) ) -- distance bet
Output:
5.6568542494924