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