(cls, representation: ifcopenshell.entity_instance)
| 90 | |
| 91 | @classmethod |
| 92 | def get_mesh_name(cls, representation: ifcopenshell.entity_instance) -> str: |
| 93 | context_id = context.id() if (context := getattr(representation, "ContextOfItems", None)) else 0 |
| 94 | return "{}/{}".format(context_id, representation.id()) |
| 95 | |
| 96 | @classmethod |
| 97 | def get_name(cls, element: ifcopenshell.entity_instance) -> str: |
no test coverage detected