Something went wrong on our end
-
Marco Biasini authored
In Python, it's now possible to do: a=geom.Vec3(1,0,0) b=geom.Vec3(0,1,0) c=geom.Vec3(0,0,1) print geom.Vec3List((a,b,c,)) print geom.Vec3List([a,b,c,]) def f(*args): for a in args: yield a print geom.Vec3List(f(a,b,c))
Marco Biasini authoredIn Python, it's now possible to do: a=geom.Vec3(1,0,0) b=geom.Vec3(0,1,0) c=geom.Vec3(0,0,1) print geom.Vec3List((a,b,c,)) print geom.Vec3List([a,b,c,]) def f(*args): for a in args: yield a print geom.Vec3List(f(a,b,c))