BIS fnc nearestPoint: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\|seealso= ([^ ]+)(\]\]|\}\}), *(\[\[|\{\{)" to "|seealso= $1$2 $3")
m (Text replacement - "= <code>([^<{]+)<\/code>" to "= <sqf>$1</sqf>")
 
(12 intermediate revisions by the same user not shown)
Line 17: Line 17:
|descr= Computes nearest point in a line.
|descr= Computes nearest point in a line.


|s1=[start, end, point, ''is2D''] call [[BIS_fnc_nearestPoint]]
|s1= [start, end, point, ''is2D''] call [[BIS_fnc_nearestPoint]]


|p1= start: [[Position]] - line start
|p1= start: [[Position]] - line start
Line 29: Line 29:
|r1= [[Position]] - the line point that is closest to ''point''
|r1= [[Position]] - the line point that is closest to ''point''


|x1= <code>[[private]] _idealLocation = [<nowiki/>[[getMarkerPos]] "base", [[getMarkerPos]] "destination", [[getPos]] [[player]], [[true]]] [[call]] [[BIS_fnc_nearestPoint]];</code>
|x1= <sqf>private _idealLocation = [getMarkerPos "base", getMarkerPos "destination", getPos player, true] call BIS_fnc_nearestPoint;</sqf>


|seealso= [[nearObjects]] [[nearestObject]] [[nearestObjects]] [[BIS_fnc_nearestPosition]] [[BIS_fnc_nearestNum]], [[BIS_fnc_nearestRoad]], [[BIS_fnc_nearestHelipad]], [[BIS_fnc_isPosBlacklisted]]
|seealso= [[nearObjects]] [[nearestObject]] [[nearestObjects]] [[BIS_fnc_nearestPosition]] [[BIS_fnc_nearestNum]] [[BIS_fnc_nearestRoad]] [[BIS_fnc_nearestHelipad]] [[BIS_fnc_isPosBlacklisted]]
}}
}}

Latest revision as of 18:00, 13 July 2022

Hover & click on the images for description

Description

Description:
Computes nearest point in a line.
Execution:
call
Groups:
Geometry

Syntax

Syntax:
[start, end, point, is2D] call BIS_fnc_nearestPoint
Parameters:
start: Position - line start
end: Position - line end
point: Position - point to check against
is2D: Boolean - (Optional, default false) 2D calculation instead of 3D
Return Value:
Position - the line point that is closest to point

Examples

Example 1:
private _idealLocation = [getMarkerPos "base", getMarkerPos "destination", getPos player, true] call BIS_fnc_nearestPoint;

Additional Information

See also:
nearObjects nearestObject nearestObjects BIS_fnc_nearestPosition BIS_fnc_nearestNum BIS_fnc_nearestRoad BIS_fnc_nearestHelipad BIS_fnc_isPosBlacklisted

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