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

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

If I sketch not faces but with edges, the result is the same.
It looks like there is an error in the hull method?
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)
`
But if I turn the axis (X_DIST=40, Y_DIST=0), the result is this:
If I sketch not faces but with edges, the result is the same.
It looks like there is an error in the hull method?