CadQuery / CadQuery/cadquery

How to select objects that are not parallel to any of the dimensions

Open
#553 3 comments 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 have a simple design where I want to select an edge that is at an angle. But no matter what I try I cannot get the edge selected.

This is my part:

```Python
from __future__ import division
from cadquery import *

stand_height = 50
stand_width = 50
stand_thickness = 1
stand_supp_thickness = 1
stand_supp_width = 12.5

stand_lip_chamfer_height = 0.5
stand_lip_chamfer_depth = 2.5 * stand_lip_chamfer_height

stand = cq.Workplane("front")\
.vLine(stand_thickness + stand_supp_thickness - stand_lip_chamfer_height)\
.line(stand_lip_chamfer_depth, stand_lip_chamfer_height)\
.hLine(stand_supp_width - stand_supp_thickness - stand_lip_chamfer_depth)\
.line(stand_supp_thickness, -stand_supp_thickness)\
.hLine(stand_width - 2 * stand_supp_width)\
.line(stand_supp_thickness, stand_supp_thickness)\
.hLine(stand_supp_width - stand_supp_thickness - stand_lip_chamfer_depth)\
.line(stand_lip_chamfer_depth, -stand_lip_chamfer_height)\
.vLine(-stand_thickness - stand_supp_thickness + stand_lip_chamfer_height)\
.close().extrude(-stand_height)

show_object(stand)
```

And I want to add a fillet to the following edge on both sides:

![asd](https://user-images.githubusercontent.com/7439756/103099955-c4328b80-4610-11eb-9c02-16c39bb3d98e.png)

I have tried many things. First selecting faces then the edges. Trying combining selectors etc. But I can't even get the face that is at 45 degrees selected.

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.