CadQuery / CadQuery/cadquery

Are not these code snippets supposed to give the same output?

Open
#189 9 comments 0 reactions 0 assignees View on GitHub
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)
```
![Screenshot from 2019-09-13 18-17-35](https://user-images.githubusercontent.com/526577/64877986-cb6b9b00-d652-11e9-9a2e-48557c87d9fe.png)

```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)
```

![Screenshot from 2019-09-13 18-18-20](https://user-images.githubusercontent.com/526577/64878055-ec33f080-d652-11e9-9d45-00613dec4598.png)

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.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.