(self, points: list[Point])
| 1000 | return not nm.check_coll([p.num for p in points]) |
| 1001 | |
| 1002 | def check_sameside(self, points: list[Point]) -> bool: |
| 1003 | return nm.check_sameside([p.num for p in points]) |
| 1004 | |
| 1005 | def make_equal(self, x: gm.Node, y: gm.Node, deps: Dependency) -> None: |
| 1006 | """Make that two nodes x and y are equal, i.e. merge their value node.""" |
no outgoing calls
no test coverage detected