Set the vectors parallel to the plane, i.e. xDir and yDir
(self, xDir)
| 808 | return resultWires |
| 809 | |
| 810 | def _setPlaneDir(self, xDir): |
| 811 | """Set the vectors parallel to the plane, i.e. xDir and yDir""" |
| 812 | xDir = Vector(xDir) |
| 813 | self.xDir = xDir.normalized() |
| 814 | self.yDir = self.zDir.cross(self.xDir).normalized() |
| 815 | |
| 816 | def _calcTransforms(self): |
| 817 | """Computes transformation matrices to convert between coordinates |