Rotation axis changed?
Open
- Dominant language
- Python
- Stars
- 5.8k
- Forks
- 541
- Avg merge
- 3d 2h
- Merged PRs (30d)
- 5
Description
With Cadquery master from Sept 2019, using ```rotate=cq.Vector(0, 45, 0)``` closed the wire below:
```python
edge_points = [[-7.,-7.,0.], [-3.,-10.,3.], [7.,-7.,0.], [7.,7.,0.], [-7.,7.,0.]]
edge_wire = cq.Workplane('XY').polyline([(-7.,-7.), (7.,-7.), (7.,7.), (-7.,7.)])
edge_wire.add(cq.Workplane('YZ').workplane().transformed(offset=cq.Vector(0, 0, -7), rotate=cq.Vector(0, 45, 0)).spline([(-7.,0.), (3,-3), (7.,0.)]))
show_object(edge_wire)
```
In CadQuery master from Dec 2019 only ```rotate=cq.Vector(45, 0, 0)``` closes the wire. Have rotation axis changed lately?
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.