示例#1
0
文件: commands.go 项目: andrebq/exp
func norm(a, b float32) (float32, float32) {
	vec := glm.Vector2{a, b}
	vec = vec.Nor()
	return vec.X, vec.Y
}