Group Management¶
Create and manage groups of objects.
Creating Groups¶
cad.create_group("MyGroup", [circle, line, rectangle])
Adding to Groups¶
cad.add_to_group("MyGroup", new_circle)
Removing from Groups¶
cad.remove_from_group("MyGroup", circle)
Selecting Groups¶
cad.select_group("MyGroup")