ACE3/addons/common/functions/fnc_interpolateFromArray.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

25 lines
523 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: commy2
* Interpolates between two set points in a curve.
*
* Arguments:
* 0: List of numbers to interpolate from <ARRAY>
* 1: Value / index <NUMBER>
*
* Return Value:
* Interpolation result <NUMBER>
*
* Example:
* [[0,1], 5] call ace_common_fnc_interpolateFromArray
*
* Public: Yes
*/
params ["_array", "_value"];
private _min = _array select floor _value;
private _max = _array select ceil _value;
linearConversion [0, 1, _value % 1, _min, _max] // return