示例#1
0
文件: atlas.go 项目: andrebq/exp
func divideVectorBy(v *glm.Vector2, x, y float32) {
	v.X = v.X / x
	v.Y = v.Y / y
}