svg-path

How do I get a coordinates list from an svgpathtools bezier curve?

How do I get a coordinates list from an svgpathtools bezier curve? Question: I have python code to create a bezier curve, from which I create a bezier path. Here are my imports: import from svgpathtools import Path, Line, CubicBezier Here is my code: bezier_curve = CubicBezier(start_coordinate, control_point_1, control_point_2, end_coordinate) bezier_path = Path(bezier_curve) I would …

Total answers: 4