()
| 100 | |
| 101 | |
| 102 | def test_face_positionAt(): |
| 103 | |
| 104 | f = plane(1, 1) |
| 105 | |
| 106 | p = f.positionAt(0.5, 0.5) |
| 107 | |
| 108 | assert p.x == approx(0.5) |
| 109 | assert p.y == approx(0.5) |
| 110 | assert p.z == approx(0) |
| 111 | |
| 112 | |
| 113 | def test_face_positions(): |
nothing calls this directly
no test coverage detected