Fitting Bezier Polygon to Points
A colleague asked if I could implement the fitting of a 2D linestring to a set of points using a bezier approximation returning a polygon. The original implementation is Smooth a 2D polyline through a set of points by interpolation (Catmull-Rom) or approximation (Chaikin).. First off, we do a Chaikin smoothing (method 1) of aRead More