(self, name: str, args: list[str])
| 108 | return Clause(points0, [c.translate(mapping) for c in self.constructions]) |
| 109 | |
| 110 | def add(self, name: str, args: list[str]) -> None: |
| 111 | self.constructions.append(Construction(name, args)) |
| 112 | |
| 113 | def txt(self) -> str: |
| 114 | return ( |
no test coverage detected