CadQuery / CadQuery/cadquery

Allow using vertices when constructing lofts

Open
#652 1 comment 2 reactions 0 assignees View on GitHub
enhancement OCC feature
Dominant language
Python
Stars
5.8k
Forks
541
Avg merge
3d 2h
Merged PRs (30d)
5

Description

E.g.
```python
import OCP

bldr = OCP.BRepOffsetAPI.BRepOffsetAPI_ThruSections(True, False)

w1 = cq.Workplane().ellipse(5,10).val()
w2 = cq.Workplane(origin=(0,0,10)).ellipse(12,25).val()
v1 = cq.Vertex.makeVertex(0,0,15.5)

bldr.AddWire(w1.wrapped)
bldr.AddWire(w2.wrapped)
bldr.AddVertex(v1.wrapped)

res = bldr.Shape()

s = cq.Workplane(obj=cq.Shape.cast(res)).faces('

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.