GetDistance2D

From Onset Developer Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
GetDistance2D

Type: Function
Context: Server & Client
Introduced: v1.0

Description

Calculates the distance between 2 points.

Syntax

GetDistance2D(x, y, x2, y2)

Parameters

  • x
    x of the first point.
  • y
    y of the first point.
  • x2
    x of the second point.
  • y2
    y of the second point.

Return Value

  • The distance between the 2 points.

Example

local distance = GetDistance2D(0, 0, 100, 100) -- Returns 100

See also