processing / processing-docs

[Deprecated] Processing reference, examples, tutorials, and website
https://processing.org
371 stars 179 forks source link

Document strokeWeight(1) + invisible point() problem, workarounds #795

Closed jeremydouglass closed 4 years ago

jeremydouglass commented 4 years ago

As per Ben Fry suggestion:

https://github.com/processing/processing/issues/5957#issuecomment-575353739

Using point() with small strokeWeight(1) or smaller may not draw anything to the screen, depending on the graphics settings on your computer. To fix this, you can 1) use set() instead, 2) use a larger strokeWeight(), or 3) draw the point using circle() or square() instead.