You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default renderer very smoothly supports zooming in on ROUND line endcaps and joins while maintaining their roundness. P2D and P3D, however, assume that any strokeWeight less than one won't have visible endcaps even when the scale factor blows them up to many pixels in size.
The following code runs fine with s = 600, i.e., no scaling. Change to s = 1, however, and the endcaps and joins disappear. Remove the P2D and both cases will stay smooth.
This one seems tricky. I haven't looked at this code in a long time but I tracked down the use of the stroke weight in the tessellation of the stroke paths in P2D to this call:
But it's no as simple as just multiplying strokeWeight by a scaling factor (I did just that just to see what happens, and the entire geometry blows up).
The LinePath and LineStroker classes that do the actual work come from some even older code that we adapted to use in Processing, but never went into the inner workings of those.
So I don't think there is a quick, easy fix... but I might be wrong :-)
Created by: scudly
The default renderer very smoothly supports zooming in on ROUND line endcaps and joins while maintaining their roundness. P2D and P3D, however, assume that any strokeWeight less than one won't have visible endcaps even when the scale factor blows them up to many pixels in size.
The following code runs fine with s = 600, i.e., no scaling. Change to s = 1, however, and the endcaps and joins disappear. Remove the P2D and both cases will stay smooth.
The text was updated successfully, but these errors were encountered: