// internal func CNewVector3f(x, y, z C.float) Vector3f { return Vector3f{C._NewVector3f(x, y, z)} }
func NewVector3f(x, y, z float32) Vector3f { return Vector3f{C._NewVector3f(C.float(x), C.float(y), C.float(z))} }