BIS fnc linearConversion: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<code>([^<]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^<]*) *<\/code>" to "<code>$1$2$3</code>")
m (Text replacement - "<code>([^<]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^<]*) *<\/code>" to "<code>$1$2$3</code>")
Line 37: Line 37:
<dd class="note">
<dd class="note">
({{arma3}} 0.50) It is recommended to use [[linearConversion]] instead of [[BIS_fnc_linearConversion]]:
({{arma3}} 0.50) It is recommended to use [[linearConversion]] instead of [[BIS_fnc_linearConversion]]:
<code>linearConversion [0, 100, 50, 0, 50, true]; {{cc|same as [[0, 100], 50, [0, 50]] call [[BIS_fnc_linearConversion]]}}</code>
<code>linearConversion [0, 100, 50, 0, 50, true]; {{cc|same as [[0, 100], 50, [0, 50]] call BIS_fnc_linearConversion}}</code>
</dd>
</dd>


</dl>
</dl>

Revision as of 22:38, 12 July 2022

Hover & click on the images for description

Description

Description:
Linear conversion of a value from one set to another
Arma 3
This function became obsolete with the introduction of linearConversion
Execution:
call
Groups:
Math

Syntax

Syntax:
Syntax needed
Parameters:
Array - [minimumValue,maximumValue] (originalSet)
Number - (originalValue)
Array - [minimumValue,maximumValue] (newSet)
Return Value:
Number (newValue)

Examples

Examples:
Example needed

Additional Information

See also:
linearConversion

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
Posted on Aug 1, 2014 - 23:39
ffur2007slx2_5
(Arma 3 0.50) It is recommended to use linearConversion instead of BIS_fnc_linearConversion: linearConversion [0, 100, 50, 0, 50, true]; // same as [[0, 100], 50, [0, 50]] call BIS_fnc_linearConversion