distance2D: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Undo revision 92579 by Killzone Kid (talk) adding back)
(any position would do)
Line 17: Line 17:
| param1 '''distance2D''' param2 |= Syntax
| param1 '''distance2D''' param2 |= Syntax


|p1= param1: [[Object]] or [[Array]] in format [[Position]] or [[Position2D]]|= Parameter 1
|p1= param1: [[Object]], [[Position2D]] or [[Position3D]]|= Parameter 1
|p2= param2: [[Object]] or [[Array]] in format [[Position]] or [[Position2D]]|= Parameter 2
|p2= param2: [[Object]], [[Position2D]] or [[Position3D]]|= Parameter 2


| [[Number]] -  Distance in meters or 1e10 if distance cannot be calculated |= Return value
| [[Number]] -  Distance in meters or 1e10 if distance cannot be calculated |= Return value

Revision as of 13:48, 1 February 2019

Hover & click on the images for description

Description

Description:
Returns a 2D distance (distance projected to X,Y plane) in meters between two Objects or two Positions or Object and Position.

distance2D.jpg
Groups:
Uncategorised

Syntax

Syntax:
param1 distance2D param2
Parameters:
param1: Object, Position2D or Position3D
param2: Object, Position2D or Position3D
Return Value:
Number - Distance in meters or 1e10 if distance cannot be calculated

Examples

Example 1:
_meters = player distance2D heli;

Additional Information

See also:
distancedistanceSqrvectorDistance

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section