(cls, origin=(0, 0, 0), xDir=Vector(0, 1, 0))
| 512 | |
| 513 | @classmethod |
| 514 | def YZ(cls, origin=(0, 0, 0), xDir=Vector(0, 1, 0)): |
| 515 | plane = Plane.named("YZ", origin) |
| 516 | plane._setPlaneDir(xDir) |
| 517 | return plane |
| 518 | |
| 519 | @classmethod |
| 520 | def ZX(cls, origin=(0, 0, 0), xDir=Vector(0, 0, 1)): |