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
In my case I'm trying to quickly interpolate between two line segments. Ideally it would be as easy as Segment.interpolate(a, b, 0.25).
I thought I might be able to use Polygon.interpolate instead, but the TypeScript types complain about that. And using Point.interpolate for the individual points gets tedious. Maybe I'm doing something wrong or missing an easier approach though!
The text was updated successfully, but these errors were encountered:
In my case I'm trying to quickly interpolate between two line segments. Ideally it would be as easy as
Segment.interpolate(a, b, 0.25)
.I thought I might be able to use
Polygon.interpolate
instead, but the TypeScript types complain about that. And usingPoint.interpolate
for the individual points gets tedious. Maybe I'm doing something wrong or missing an easier approach though!The text was updated successfully, but these errors were encountered: