mirror of
https://github.com/Ghostrider-DbD-/GMS_RC.git
synced 2024-08-30 16:02:11 +00:00
7273521854
Moved over to $prefix$ and labeled unused files
36 lines
877 B
Plaintext
36 lines
877 B
Plaintext
/*
|
|
GMS_fnc_findPositionsAlongARadius
|
|
|
|
Generates an array of equidistant positions along the circle of diameter _radius
|
|
for ghostridergaming
|
|
By Ghostrider [GRG]
|
|
Copyright 2016
|
|
--------------------------
|
|
License
|
|
--------------------------
|
|
All the code and information provided here is provided under an Attribution Non-Commercial ShareAlike 4.0 Commons License.
|
|
|
|
http://creativecommons.org/licenses/by-nc-sa/4.0/
|
|
*/
|
|
#include "\x\addons\GMS\Compiles\Init\GMS_defines.hpp"
|
|
|
|
params["_center","_num","_minDistance","_maxDistance"];
|
|
|
|
private _locs = [];
|
|
private _startDir = round(random(360));
|
|
private _currentDir = _startDir;
|
|
private _Arc = 360/_num;
|
|
|
|
for "_i" from 1 to _num do
|
|
{
|
|
_currentDir = _currentDir + _Arc;
|
|
_dist = round(_minDistance + (random(_maxDistance - _minDistance)));
|
|
_newpos = _center getPos [_dist, _currentDir];
|
|
_locs pushback _newpos;
|
|
};
|
|
|
|
_locs
|
|
|
|
|
|
|