(value: str)
| 125 | |
| 126 | @staticmethod |
| 127 | def set_path(value: str) -> None: |
| 128 | IfcStore.path = value |
| 129 | # Interpret relative paths as relative to .blend file. |
| 130 | if IfcStore.path and not os.path.isabs(IfcStore.path): |
| 131 | IfcStore.path = os.path.abspath(os.path.join(bpy.path.abspath("//"), IfcStore.path)) |
| 132 | |
| 133 | @staticmethod |
| 134 | def generate_cache_path() -> str: |
no test coverage detected