(curve)
| 38 | |
| 39 | |
| 40 | def _curve_points(curve) -> list | None: |
| 41 | if curve.is_a("IfcPolyline"): |
| 42 | return [_rc(p.Coordinates) for p in curve.Points] |
| 43 | if curve.is_a("IfcIndexedPolyCurve"): |
| 44 | return [_rc(c) for c in curve.Points.CoordList] |
| 45 | return None |
| 46 | |
| 47 | |
| 48 | def _profile_summary(profile) -> dict: |
no test coverage detected