Renamed the atan functions that take 2 arguments to be correctly called atan2.
Old: public angle atan(double y, double x) : nonfglue = ang_atan2; New: public angle atan2(double y, double x) : nonfglue = ang_atan2; Old: public double atand(double y, double x) : nonfglue = ang_atan2d; New: public double atan2Rad(double y, double x) : nonfglue = ang_atan2d; Old: public double atanquick(double y, double x) : nonfglue = ang_qatan2d; New: public double quickAtan2Rad(double y, double x) : nonfglue = ang_qatan2d;
Renamed the atan functions that take 2 arguments to be correctly called atan2.
Old: public angle atan(float y, float x) : nonfglue = angF_atan2; New: public angle atan2(float y, float x) : nonfglue = angF_atan2; Old: public float atand(float y, float x) : nonfglue = angF_atan2f; New: public float atan2Rad(float y, float x) : nonfglue = angF_atan2f; Old: public float atanquick(float y, float x) : nonfglue = angF_qatan2f; New: public float quickAtan2Rad(float y, float x) : nonfglue = angF_qatan2f;
Previously, the inchesS(double v, bool showUnit, lcid local, int decimals, unitMagnitude magnitude) function would disregard the decimals value. This behavior has been updated to respect that argument.