(cls, origin=(0, 0, 0), xDir=Vector(0, 0, -1))
| 560 | |
| 561 | @classmethod |
| 562 | def right(cls, origin=(0, 0, 0), xDir=Vector(0, 0, -1)): |
| 563 | plane = Plane.named("right", origin) |
| 564 | plane._setPlaneDir(xDir) |
| 565 | return plane |
| 566 | |
| 567 | @classmethod |
| 568 | def top(cls, origin=(0, 0, 0), xDir=Vector(1, 0, 0)): |