Constants

float.inc

Different methods of rounding

floatround_method
enum floatround_method {
	floatround_round = 0,
	floatround_floor,
	floatround_ceil,
	floatround_tozero
};

Different units of measurement for angles

anglemode
enum anglemode {
	radian = 0,
	degrees,
	grades
};