(cls, origin=(0, 0, 0), xDir=Vector(0, 0, 1))
| 554 | |
| 555 | @classmethod |
| 556 | def left(cls, origin=(0, 0, 0), xDir=Vector(0, 0, 1)): |
| 557 | plane = Plane.named("left", origin) |
| 558 | plane._setPlaneDir(xDir) |
| 559 | return plane |
| 560 | |
| 561 | @classmethod |
| 562 | def right(cls, origin=(0, 0, 0), xDir=Vector(0, 0, -1)): |