BIS fnc clamp: Difference between revisions
| Lou Montana (talk | contribs) m (Text replacement - "\|gr([0-9]+) = " to "|gr$1= ") | Lou Montana (talk | contribs)  m (Text replacement - "<code> +" to "<code>") | ||
| Line 17: | Line 17: | ||
| |r1= [[Number]] - the clamped value | |r1= [[Number]] - the clamped value | ||
| |x1= <code> [5, 0, 10] [[call]] [[BIS_fnc_clamp]]; {{cc|returns 5}} | |x1= <code>[5, 0, 10] [[call]] [[BIS_fnc_clamp]]; {{cc|returns 5}} | ||
|   [0, 0, 10] [[call]] [[BIS_fnc_clamp]]; {{cc|returns 0}} |   [0, 0, 10] [[call]] [[BIS_fnc_clamp]]; {{cc|returns 0}} | ||
| [10, 0, 10] [[call]] [[BIS_fnc_clamp]]; {{cc|returns 10}} | [10, 0, 10] [[call]] [[BIS_fnc_clamp]]; {{cc|returns 10}} | ||
Revision as of 22:47, 10 June 2021
Description
Syntax
- Syntax:
- [value, min, max] call BIS_fnc_clamp
- Parameters:
- value: Number - value to be clamped
- min: Number - (Optional, default 0) lower limit
- max: Number - (Optional, default 0) upper limit
- Return Value:
- Number - the clamped value
Examples
- Example 1:
- [5, 0, 10] call BIS_fnc_clamp; // returns 5 [0, 0, 10] call BIS_fnc_clamp; // returns 0 [10, 0, 10] call BIS_fnc_clamp; // returns 10 [-5, 0, 10] call BIS_fnc_clamp; // returns 0 [15, 0, 10] call BIS_fnc_clamp; // returns 10 [5, 10, 3] call BIS_fnc_clamp; // returns 10
Additional Information
- See also:
- See also needed
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
 
	