summaryrefslogtreecommitdiff
path: root/glm/util.ha
blob: 02e4afc463209b3a342590d04eafe4dba186f4d9 (plain)
1
2
3
4
5
6
7
8
9
use math;

export fn rad(deg: f32) f32 = {
	return deg * math::PI: f32 / 180.0;
};

export fn deg(rad: f32) f32 = {
	return rad * 180.0 / math::PI: f32;
};