(
self, args: tuple[Segment, Segment, Segment]
)
| 1468 | return add |
| 1469 | |
| 1470 | def why_circle( |
| 1471 | self, args: tuple[Segment, Segment, Segment] |
| 1472 | ) -> list[Dependency]: |
| 1473 | oa, ob, oc = args |
| 1474 | return self.why_equal(oa, ob, None) and self.why_equal(oa, oc, None) |
| 1475 | |
| 1476 | def check_circle(self, points: list[Point]) -> bool: |
| 1477 | o, a, b, c = points |