| 43 | |
| 44 | |
| 45 | class ClashResult(TypedDict): |
| 46 | a_global_id: str |
| 47 | b_global_id: str |
| 48 | a_ifc_class: str |
| 49 | b_ifc_class: str |
| 50 | a_name: str |
| 51 | b_name: str |
| 52 | type: ifcopenshell.geom.main.ClashType |
| 53 | p1: list[float] |
| 54 | p2: list[float] |
| 55 | distance: float |
| 56 | |
| 57 | |
| 58 | class ClashSet(TypedDict): |