Suggestion: create new rotateX, rotateY and rotateZ 3D operations on the Workplane
Open
- Dominant language
- Python
- Stars
- 5.8k
- Forks
- 541
- Avg merge
- 3d 2h
- Merged PRs (30d)
- 5
Description
These would be convenience functions analogous to the 2D operations `mirrorX` and `mirrorY`,
Implementation is straightforward, eg:
```
def rotateX(
self: T,
angleDegrees: float,
) -> T:
return self.rotate((0, 0, 0), (1, 0, 0), angleDegrees)
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.