RhinoMeshObject
- class compas_ui.rhino.objects.RhinoMeshObject(*args, **kwargs)[source]
Bases:
RhinoObject
,MeshObject
Class for representing COMPAS meshes in Rhino.
- Attributes:
guid_vertex (dict[System.Guid, int]) – Map between Rhino object GUIDs and mesh vertex identifiers.
guid_edge (dict[System.Guid, tuple[int, int]]) – Map between Rhino object GUIDs and mesh edge identifiers.
guid_face (dict[System.Guid, int]) – Map between Rhino object GUIDs and mesh face identifiers.
Methods
Update the attributes of the mesh.
Update the attributes of the edges.
Update the attributes of selected faces.
Update the attributes of selected vertices.
Move the entire mesh to a different location.
Move a single face of the mesh object and update the data structure accordingly.
Move a single vertex of the mesh object and update the data structure accordingly.
Move a multiple vertices of the mesh object and update the data structure accordingly.
Move selected vertices along specified direction.
Select edges of the mesh.
Select faces of the mesh.
Select one vertex of the mesh.
Select vertices of the mesh.
Inherited Methods