Open steve8x8 opened 3 months ago
Sure. Do you have a list of 2D points and you want to make a 2D shape that is spline-smoothed through those points?
Instead of doing polygon(points)
, I think you can just do polygon(smooth(points, loop=true))
.
If that doesn't work, post a code example and I'll have a look.
Is there a way to use the spline module to create a smoothed version of, say, polygon()? I found spline_ribbon() but that will only create the border, and I don't want to use hull() as that would drop too many details.
Any suggestions? (Did I overlook the obvious?)