(self, n: int, d: int)
| 147 | self.connect_val(ang, deps=None) |
| 148 | |
| 149 | def _create_const_rat(self, n: int, d: int) -> None: |
| 150 | n, d = ar.simplify(n, d) |
| 151 | rat = self.rconst[(n, d)] = self.new_node(Ratio, f'{n}/{d}') |
| 152 | rat.set_lengths(None, None) |
| 153 | self.connect_val(rat, deps=None) |
| 154 | |
| 155 | def get_or_create_const_ang(self, n: int, d: int) -> None: |
| 156 | n, d = ar.simplify(n, d) |
no test coverage detected