(self: "BIMMeshProperties", context: bpy.types.Context)
| 733 | |
| 734 | |
| 735 | def get_profiles(self: "BIMMeshProperties", context: bpy.types.Context): |
| 736 | from bonsai.bim.module.model.data import ItemData |
| 737 | |
| 738 | if not ItemData.is_loaded: |
| 739 | ItemData.load() |
| 740 | return ItemData.data["profiles_enum"] |
| 741 | |
| 742 | |
| 743 | SubshapeType = Literal["-", "PROFILE", "AXIS"] |