goopylib-v1 icon indicating copy to clipboard operation
goopylib-v1 copied to clipboard

Forward Difference Bezier Curve Function

Open BhavyeMathur opened this issue 3 years ago • 0 comments

Reference: https://www.drdobbs.com/forward-difference-calculation-of-bezier/184403417

This would be implemented in a separate function that would return a list of points for bezier curves given a resolution.

def full_bezier_curve(t_resolution=0.05, control_points):
    ...
    return bezier_curve # a list of ceil(1 / t_resolution) points

BhavyeMathur avatar Sep 24 '20 17:09 BhavyeMathur