Connect last edge to the first one.
(self: T, tag: Optional[str] = None)
| 953 | return self.edge(val, tag, forConstruction) |
| 954 | |
| 955 | def close(self: T, tag: Optional[str] = None) -> T: |
| 956 | """ |
| 957 | Connect last edge to the first one. |
| 958 | """ |
| 959 | |
| 960 | self.segment(self._endPoint(), self._startPoint(), tag) |
| 961 | |
| 962 | return self |
| 963 | |
| 964 | def assemble(self: T, mode: Modes = "a", tag: Optional[str] = None) -> T: |
| 965 | """ |
nothing calls this directly
no test coverage detected