discuss@lists.openscad.org

OpenSCAD general discussion Mailing-list

View all threads

Re: [OpenSCAD] incrementing variables in order to slice an object and "modulate" it

P
Parkinbot
Thu, Mar 24, 2016 1:25 PM

ah, you are right about the sign. This code solves your problem using hull().

skewoffset = 3;
length= 30;
hull()
{
cube([.1, 10, 10]);
translate([length, 0, skewoffset])
cube([.1, 10, 10]);
}

--
View this message in context: http://forum.openscad.org/incrementing-variables-in-order-to-slice-an-object-and-modulate-it-tp16600p16710.html
Sent from the OpenSCAD mailing list archive at Nabble.com.

ah, you are right about the sign. This code solves your problem using hull(). > skewoffset = 3; > length= 30; > hull() > { > cube([.1, 10, 10]); > translate([length, 0, skewoffset]) > cube([.1, 10, 10]); > } -- View this message in context: http://forum.openscad.org/incrementing-variables-in-order-to-slice-an-object-and-modulate-it-tp16600p16710.html Sent from the OpenSCAD mailing list archive at Nabble.com.