Example #1
0
func NewVector2f(x, y float32) Vector2f {
	return Vector2f{C._NewVector2f(C.float(x), C.float(y))}
}
Example #2
0
// internal
func CNewVector2f(x, y C.float) Vector2f {
	return Vector2f{C._NewVector2f(x, y)}
}