Hello,
I'm a newbie to cadquery and I tried creating a hollow cylinder by a loft, but it doesn't work. Here is my sample program:
#!/usr/bin/env python
import cadquery as cq
# Creates a hollow cylinder
cyl_hollow = (cq
.Workplane('front')
.circle(100)
.circle(120)
.extrude(50))
exporters.export(cyl_hollow, 'cyl_hollow.stl')
# Create a solid cylinder by a loft
cyl_loft = (cq
.Workplane('front')
.circle(100)
.workplane(offset=50)
.circle(100)
.loft())
exporters.export(cyl_loft, 'cyl_loft.stl')
# Try to create a hollow cylinder by a loft. This fails!
cyl_hollow_loft = (cq
.Workplane('front')
.circle(100)
.circle(120)
.workplane(offset=50)
.circle(100)
.circle(120)
.loft())
exporters.export(cyl_hollow_loft, 'cyl_loft_hollow.stl')
And here are the three generated geometries.

I expected cyl_loft_hallow.stl to be the same as cyl_hollow.stl .
Any suggestions?
Thanks!
Dov