self.assertEqual(model.dof(self.mySketch), self.myDOF)
def checkPointCoordinates(self, thePoint, theCoordinates):
- self.assertAlmostEqual(thePoint.x(), theCoordinates[0], 6)
- self.assertAlmostEqual(thePoint.y(), theCoordinates[1], 6)
+ self.assertAlmostEqual(thePoint.x(), theCoordinates[0], 5)
+ self.assertAlmostEqual(thePoint.y(), theCoordinates[1], 5)
def checkPointOnArc(self, theCoordinates):
distPC = model.distancePointPoint(self.myArc.center(), theCoordinates)
radius = model.distancePointPoint(self.myArc.center(), self.myArc.startPoint())
- self.assertAlmostEqual(distPC, radius, 6)
+ self.assertAlmostEqual(distPC, radius, 5)
def checkArcRadius(self):
radius = model.distancePointPoint(self.myArc.center(), self.myArc.startPoint())
- self.assertAlmostEqual(radius, self.myRadius, 6)
+ self.assertAlmostEqual(radius, self.myRadius, 5)
def fixArcRadius(self):
self.myRadius = 20.