getGraphValues: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\|(arg|eff|serverExec|mp|seealso)= " to "")
m (Text replacement - " {{uc:{{PAGENAME}}}}" to "")
Line 60: Line 60:


{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]

Revision as of 18:39, 8 June 2021

Hover & click on the images for description

Description

Description:
Description needed
Groups:
Math

Syntax

Syntax:
Syntax needed
Parameters:
graphMinX: Number - minimum x-axis value
graphMaxX: Number - maximum x-axis value
graphMinY: Number - minimum y-axis value
graphMaxY: Number - maximum y-axis value
valueCount: Number - number of values the returned array should have
randomOffset: Number - random range for returned y value
x1..n: Number - nth x value
y1..n: Number - nth y value
Return Value:
Return value needed

Examples

Example 1:
private _minX = 0; private _maxX = 10; private _minY = 0; private _maxY = 100; private _count = 11; private _random = 0; getGraphValues [ [_minX, _maxX, _minY, _maxY, _count, _random], 0, 5, 1, 10, 2, 100, 3, 50, 4, 30, 5, 100, 6, 10, 7, 50, 8, 75, 9, 100, 10, 100 ]; /* returns [[0.05, 0.1, 1, 0.5, 0.3, 1, 0.1, 0.5, 0.75, 1, 1], [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]] supposedly [array of 1-based Y values, array of X values] */

Additional Information

See also:
decayGraphValues

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