BIS fnc clamp: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (infobox to template)
(Page filling)
Line 1: Line 1:
{{Function|= Comments
{{Function


| arma3 |Game name=
|game1= arma3


|1.00|Game version=
|version1= 1.00


<!---|arg= local |Multiplayer Arguments=--->
|descr= Clamps provided value within min..max range.


<!---|eff= local |Multiplayer Effects=--->
|s1= [value, min, max] call [[BIS_fnc_clamp]]


| <pre>/*
|p1= value: [[Number]] - value to be clamped
Author:
|p2= min: [[Number]] - (Optional, default 0) lower limit
Nelson Duarte
|p3= max: [[Number]] - (Optional, default 0) upper limit
Description:
Clamps scalar between min / max
Parameters:
_this: ARRAY
0: SCALAR - The value to clamp
1: SCALAR - Min value
2: SCALAR - Max value
Returns:
SCALAR - Clamped value
*/</pre>{{placeholder}}<!-- Remove this after fill-in --> |Description=


|[] call [[BIS_fnc_clamp]]|Syntax=
| [[Number]] - the clamped value


|p1= parameter: Datatype - (Optional, default defValue) description |Parameter 1=
|x1= <code> [5, 0, 10] [[call]] [[BIS_fnc_clamp]]; {{cc|returns 5}}
[0, 0, 10] [[call]] [[BIS_fnc_clamp]]; {{cc|returns 0}}
[10, 0, 10] [[call]] [[BIS_fnc_clamp]]; {{cc|returns 10}}
[-5, 0, 10] [[call]] [[BIS_fnc_clamp]]; {{cc|returns 0}}
[15, 0, 10] [[call]] [[BIS_fnc_clamp]]; {{cc|returns 10}}


|Datatype - description|Return value=
[5, '''10''', 3] [[call]] [[BIS_fnc_clamp]]; {{cc|returns 10}}
</code>


|x1= <code></code>|Example 1=
|seealso= [[:Category:Function Group: Math]] [[:Category:Command Group: Math]]
}}


| |See also=
}}


[[Category:Functions|{{uc:clamp}}]]
[[Category:Function Group: Math|{{uc:clamp}}]]
[[Category:Function Group: Math|{{uc:clamp}}]]
[[Category:Functions|{{uc:clamp}}]]
[[Category:{{arma3}}: Functions|{{uc:clamp}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:clamp}}]]

Revision as of 23:09, 2 January 2020

Hover & click on the images for description

Description

Description:
Clamps provided value within min..max range.
Execution:
call
Groups:
Uncategorised

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:
Return value needed

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:
Category:Function Group: Math Category:Command Group: Math

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