(self)
| 148 | self.assertTupleAlmostEquals(p.yDir.toTuple(), xAxis_.toTuple(), 4) |
| 149 | |
| 150 | def testZYPlaneBasics(self): |
| 151 | p = Plane.named("ZY") |
| 152 | self.assertTupleAlmostEquals(p.zDir.toTuple(), xInvAxis_.toTuple(), 4) |
| 153 | self.assertTupleAlmostEquals(p.xDir.toTuple(), zAxis_.toTuple(), 4) |
| 154 | self.assertTupleAlmostEquals(p.yDir.toTuple(), yAxis_.toTuple(), 4) |
| 155 | |
| 156 | def test_mirror(self): |
| 157 | """Create a unit box and mirror it so that it doubles in size""" |
nothing calls this directly
no test coverage detected