(self)
| 259 | self.assertAlmostEqual(ang_between(e, d, f), ang_between(b, a, x)) |
| 260 | |
| 261 | def test_sketch_shift(self): |
| 262 | a, b, c = random_points(3) |
| 263 | x = nm.sketch_shift([a, b, c]) |
| 264 | self.assertTrue((b - a).close(x - c)) |
| 265 | |
| 266 | def test_sketch_square(self): |
| 267 | a, b = random_points(2) |
nothing calls this directly
no test coverage detected