选择曲线对象中连接到当前选择曲线段的所有曲线段。
bpy.ops.curve.select_linked()
无
set
: 选中的曲线段集合。
import bpy
# 获取当前选中的曲线对象
obj = bpy.context.object
if obj.type == 'CURVE':
# 选择第一个曲线段
obj.data.splines[0].bezier_points[0].select_control_point = True
obj.data.splines[0].bezier_points[0].select_left_handle = True
obj.data.splines[0].bezier_points[0].select_right_handle = True
# 选择连接到第一个曲线段的所有曲线段
bpy.ops.curve.select_linked()