We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Does it mean strokeWeight() is alway an integer because strokeWeight(1) means 1 pixel thickness and you can't have 0.1 pixels? is it the same in all programming languages? Thank you!
Answers
it looks like
point(20,20)
andpoint(20.9,20.9)
are identical. howeverpoint(21,21);
is diffirent.it's not always an integer
I see. Thanks