(self, other_node: "Node")
| 25 | distance: float |
| 26 | |
| 27 | def to(self, other_node: "Node") -> Intersection: |
| 28 | return Intersection( |
| 29 | coordsys=other_node, |
| 30 | point=self.coordsys.point_to_node(self.point, other_node), |
| 31 | hit=self.hit, |
| 32 | distance=self.distance, |
| 33 | ) |
| 34 | |
| 35 | def __eq__(self, other): |
| 36 | return all( |