@andybak , As I was testing draw.path and model.position fixes in the new Beta, I noticed that user.

@andybak , As I was testing draw.path and model.position fixes in the new Beta, I noticed that user.move.to resets the brush.size. The following have 2 different behaviors in Beta. BTW, I'm using Icing. I haven't done a full test of the other brushes.

ob new
ob brush.size.set=0.01
ob draw.path=[0,0,0],[0,1,0]


ob new
ob brush.size.set=0.01
ob user.move.to=0,0,-5
ob draw.path=[0,0,0],[0,1,0]


Also, 0.1 is much thicker in Beta than the Release. They don't match up.
Come to think of it, I was observing a lot of inconsistent behavior for brush size in the Release so much so that I came to find that following command sequence reliably set the brush size to what I expected. I've been using it all over my code.

            ob.brush.type("NeonPulse")
            ob.brush.size.set(1)
            ob.brush.type("Icing")
            ob.brush.size.set(0.1)
Was this page helpful?