Are not these code snippets supposed to give the same output?
- Dominant language
- Python
- Stars
- 5.8k
- Forks
- 541
- Avg merge
- 3d 2h
- Merged PRs (30d)
- 5
Description
```python
cq.Workplane('XY').moveTo(0.0, 0.0).lineTo(10.0, 0.0).lineTo(3.0, 5.0).close().extrude(2.0)
```

```python
points = [(0.0, 0.0), (10.0, 0.0), (3.0, 5.0), (0.0, 0.0)]
cq.Workplane('XY').polyline(points).extrude(2.0)
```

Using [`jupyter-cadquery`](https://github.com/bernhard-42/jupyter-cadquery#installation), so maybe it is not updated to latest CadQuery.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.