BIS fnc getLineDist: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - " <h3 style="display:none">Notes</h3> <dl class="command_description"> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl>" to "") |
Lou Montana (talk | contribs) m (Text replacement - " *\| *([Cc]omments|COMMENTS|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments \("local" or "global"\)|Multiplayer Effects \("local" or "global"\)|Multiplayer Execution \("server" o...) |
||
Line 1: | Line 1: | ||
{{Function | {{Function | ||
| arma2 | | arma2 | ||
|1.00 | |1.00 | ||
|gr1 = Geometry | |gr1 = Geometry | ||
| Return the distance between two sections of a virtual straight line.<br> | | Return the distance between two sections of a virtual straight line.<br> | ||
<br> | <br> | ||
[[File:BIS fnc getLineDistSchema.png]] | [[File:BIS fnc getLineDistSchema.png]] | ||
| [start1, length1, start2, length2] call [[BIS_fnc_getLineDist]] | | [start1, length1, start2, length2] call [[BIS_fnc_getLineDist]] | ||
|p1= start1: [[Number]] - segment 1 beginning. Can be negative | |p1= start1: [[Number]] - segment 1 beginning. Can be negative | ||
|p2= length1: [[Number]] - segment 1 length. Can be negative | |p2= length1: [[Number]] - segment 1 length. Can be negative | ||
|p3= start2: [[Number]] - segment 2 beginning. Can be negative | |p3= start2: [[Number]] - segment 2 beginning. Can be negative | ||
|p4= length2: [[Number]] - segment 2 length. Can be negative | |p4= length2: [[Number]] - segment 2 length. Can be negative | ||
| [[Number]] | | [[Number]] | ||
|x1= <code>_distance = [0,5,15,20] [[call]] [[BIS_fnc_getLineDist]]; {{codecomment|// returns 10}}</code> | |x1= <code>_distance = [0,5,15,20] [[call]] [[BIS_fnc_getLineDist]]; {{codecomment|// returns 10}}</code> | ||
| [[distance]] | | [[distance]] | ||
}} | }} | ||
Revision as of 23:02, 17 January 2021
Description
- Description:
- Return the distance between two sections of a virtual straight line.
- Execution:
- call
- Groups:
- Geometry
Syntax
- Syntax:
- [start1, length1, start2, length2] call BIS_fnc_getLineDist
- Parameters:
- start1: Number - segment 1 beginning. Can be negative
- length1: Number - segment 1 length. Can be negative
- start2: Number - segment 2 beginning. Can be negative
- length2: Number - segment 2 length. Can be negative
- Return Value:
- Number
Examples
- Example 1:
_distance = [0,5,15,20] call BIS_fnc_getLineDist; // returns 10
Additional Information
- See also:
- distance
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