forked from agapas/separate-curves
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseparate_curves.py
83 lines (69 loc) · 2.51 KB
/
separate_curves.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# ##### BEGIN GPL LICENSE BLOCK #####
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ##### END GPL LICENSE BLOCK #####
# <pep8-80 compliant>
bl_info = {
"name": "Separate Curve Object",
"author": "Agnieszka Pas",
"version": (2, 1, 0),
"blender": (2, 80, 0),
"location": "View3D > Sidebar > SCO Tab > SCO",
"warning": "",
"description": "Separate active curve object by loose parts",
"category": "Curve",
}
import bpy
from bpy.types import Operator, Panel
class SCO_OT_operator(Operator):
"""Separate active curve object by loose parts"""
bl_idname = "curve.sco"
bl_label = "By Loose Parts"
bl_options = {'REGISTER', 'UNDO'}
def execute(self, context):
layer = context.view_layer
active = layer.objects.active
splines = active.data.splines
bpy.ops.object.mode_set(mode='EDIT', toggle=False)
bpy.ops.curve.select_all(action='DESELECT')
while len(splines) > 1:
spline = splines[0]
if spline.bezier_points:
spline.bezier_points[0].select_control_point = True
elif spline.points:
spline.points[0].select = True
bpy.ops.curve.select_linked()
bpy.ops.curve.separate()
bpy.ops.object.mode_set(mode='OBJECT', toggle=False)
return {'FINISHED'}
class SCO_PT_panel(Panel):
bl_label = "SCO"
bl_space_type = "VIEW_3D"
bl_region_type = "UI"
bl_category = "SCO"
@classmethod
def poll(cls, context):
active = context.view_layer.objects.active
return (active and active.type == 'CURVE')
def draw(self, context):
layout = self.layout
layout.label(text="Separate Curve:")
layout.operator('curve.sco')
classes = (
SCO_OT_operator,
SCO_PT_panel,
)
register, unregister = bpy.utils.register_classes_factory(classes)