Skip to content

Sketch - hull method #931

Description

@ardaij

I want to connect multiple objects with the hull method.

For example:

`import cadquery as cq

X_DIST = 0
Y_DIST = 40
base = (
cq.Sketch()
.circle(20)
.wires()
.push(((X_DIST, Y_DIST), (-X_DIST, -Y_DIST)))
.circle(10)
.wires()
.hull()
)
part = (
cq.Workplane("XY")
.placeSketch(base)
.extrude(0.01)
)
show_object(part)
`
part_v1

But if I turn the axis (X_DIST=40, Y_DIST=0), the result is this:

part_v2

If I sketch not faces but with edges, the result is the same.

It looks like there is an error in the hull method?

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions