Curves: Separate to object operator

Use the existing "remove_points_and_split" utility added
for grease pencil to implement the operator for the curves
object type. The whole structure is similar to the recently
added point cloud separate operator (4cd3540579).

Pull Request: https://projects.blender.org/blender/blender/pulls/134763
This commit is contained in:
Hans Goudey
2025-02-18 19:31:30 +01:00
committed by Hans Goudey
parent e2c1922c60
commit a99f9496a0
11 changed files with 273 additions and 112 deletions

View File

@@ -1771,6 +1771,7 @@ void operatortypes_curves()
WM_operatortype_append(CURVES_OT_select_linked_pick);
WM_operatortype_append(CURVES_OT_select_more);
WM_operatortype_append(CURVES_OT_select_less);
WM_operatortype_append(CURVES_OT_separate);
WM_operatortype_append(CURVES_OT_surface_set);
WM_operatortype_append(CURVES_OT_delete);
WM_operatortype_append(CURVES_OT_duplicate);