File3dmGroupTable
- class rhino3dm.File3dmGroupTable
- __len__()
[todo] add documentation
- __getitem__()
[todo] add documentation
- __iter__()
[todo] add documentation
- Add(group)
[todo] add documentation
- Delete(group)
[todo] add documentation
- Delete(index)
[todo] add documentation
- Delete(id)
[todo] add documentation
- FindIndex(index)
Retrieves a Group object based on an index. This search type of search is discouraged. We are moving towards using only IDs for all tables.
- Parameters:
groupIndex (int) – The index to search for.
- Returns:
A Group object, or None if none was found.
- Return type:
- FindName(name)
Finds a Group given its name.
- Parameters:
name (str) – The name of the Group to be searched.
- Returns:
A Group, or None on error.
- Return type:
- GroupMembers(groupIndex)
Gets an array of all of the objects in a group.
- Parameters:
groupIndex (int) – The index of the group in this table.
- Returns:
Array of objects that belong to the specified group or empty array if no objects could be found.
- Return type: