(cls, origin=(0, 0, 0), xDir=Vector(1, 0, 0))
| 542 | |
| 543 | @classmethod |
| 544 | def front(cls, origin=(0, 0, 0), xDir=Vector(1, 0, 0)): |
| 545 | plane = Plane.named("front", origin) |
| 546 | plane._setPlaneDir(xDir) |
| 547 | return plane |
| 548 | |
| 549 | @classmethod |
| 550 | def back(cls, origin=(0, 0, 0), xDir=Vector(-1, 0, 0)): |
nothing calls this directly
no test coverage detected