discuss@lists.openscad.org

OpenSCAD general discussion Mailing-list

View all threads

Re: [OpenSCAD] How to go from a round surface to a flat surface seamlessly?

K
kintel
Fri, Jan 23, 2015 3:31 PM

Try this:

hull() {
cylinder(d=1,h=1,$fn=30);
translate([-.5,-.5,-1]) cube(1);
}

--
View this message in context: http://forum.openscad.org/How-to-go-from-a-round-surface-to-a-flat-surface-seamlessly-tp11196p11197.html
Sent from the OpenSCAD mailing list archive at Nabble.com.

Try this: hull() { cylinder(d=1,h=1,$fn=30); translate([-.5,-.5,-1]) cube(1); } -- View this message in context: http://forum.openscad.org/How-to-go-from-a-round-surface-to-a-flat-surface-seamlessly-tp11196p11197.html Sent from the OpenSCAD mailing list archive at Nabble.com.