Sum angles together, accounting for the 'wrap around'.
clockwise of true (default) means angles are added in clockwise direction
clockwise
// From 180deg, add 90deg in the clockwise directionradiansSum(180, 90, true); Copy
// From 180deg, add 90deg in the clockwise directionradiansSum(180, 90, true);
radiansSum is the same, but uses radians (0..2 Pi)
Orientation of angles is as follows:
90 |180 ---+--- 0 | 270 Copy
90 |180 ---+--- 0 | 270
Starting angle, in degrees
Angle to add, in degrees
Add in clockwise direction (default: true)
Sum result, in degrees
Sum angles together, accounting for the 'wrap around'.
clockwise
of true (default) means angles are added in clockwise directionradiansSum is the same, but uses radians (0..2 Pi)
Orientation of angles is as follows: