CadQuery / CadQuery/cadquery

Support chamfer and/or fillet with different values for different edges at once

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

Description

I want to make a box with chamfers, like the left one in the picture.

Image

Top edges have larger chamfer value, and other edges (bottom and side) with smaller chamfer value.

Currently, the only way I can do in CadQuery is to chamfer twice:
```python
result = (
cq.Workplane()
.rect(10, 10)
.extrude(10)

.edges('>Z')
.chamfer(2)

.edges('

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.