Добавление объявлений для inline методов в единицах трансляции в соответствии со стандартом C99
This commit is contained in:
parent
e39765b733
commit
6c0ae92ed4
14 changed files with 646 additions and 1 deletions
|
|
@ -1,3 +1,67 @@
|
||||||
#include "utilities.h"
|
#include "utilities.h"
|
||||||
#include "angle.h"
|
#include "angle.h"
|
||||||
|
|
||||||
|
// !================= Radians ==================! //
|
||||||
|
|
||||||
|
extern inline float bgc_radians_to_degrees_fp32(const float radians);
|
||||||
|
extern inline double bgc_radians_to_degrees_fp64(const double radians);
|
||||||
|
|
||||||
|
extern inline float bgc_radians_to_turns_fp32(const float radians);
|
||||||
|
extern inline double bgc_radians_to_turns_fp64(const double radians);
|
||||||
|
|
||||||
|
extern inline float bgc_radians_to_units_fp32(const float radians, const BgcAngleUnitEnum to_unit);
|
||||||
|
extern inline double bgc_radians_to_units_fp64(const double radians, const BgcAngleUnitEnum to_unit);
|
||||||
|
|
||||||
|
extern inline float bgc_radians_normalize_fp32(const float radians, const BgcAngleRangeEnum range);
|
||||||
|
extern inline double bgc_radians_normalize_fp64(const double radians, const BgcAngleRangeEnum range);
|
||||||
|
|
||||||
|
// !================= Degrees ==================! //
|
||||||
|
|
||||||
|
extern inline float bgc_degrees_to_radians_fp32(const float degrees);
|
||||||
|
extern inline double bgc_degrees_to_radians_fp64(const double degrees);
|
||||||
|
|
||||||
|
extern inline float bgc_degrees_to_turns_fp32(const float radians);
|
||||||
|
extern inline double bgc_degrees_to_turns_fp64(const double radians);
|
||||||
|
|
||||||
|
extern inline float bgc_degrees_to_units_fp32(const float degrees, const BgcAngleUnitEnum to_unit);
|
||||||