(self, points: list[Point])
| 2389 | return add |
| 2390 | |
| 2391 | def check_simtri(self, points: list[Point]) -> bool: |
| 2392 | a, b, c, x, y, z = points |
| 2393 | return self.check_eqangle([a, b, a, c, x, y, x, z]) and self.check_eqangle( |
| 2394 | [b, a, b, c, y, x, y, z] |
| 2395 | ) |
| 2396 | |
| 2397 | def add_simtri2( |
| 2398 | self, points: list[Point], deps: EmptyDependency |