discuss@lists.openscad.org

OpenSCAD general discussion Mailing-list

View all threads

Re: [OpenSCAD] Errors With Translation

P
Parkinbot
Fri, May 13, 2016 8:17 PM

You use the 'show-only' operator. It will ignore all of the design beside its
operand. So translate() will not execute. If you wanna see the translation,
try

! translate([0,0,(B+P+O)+(D/2)])
cube([C, H+2, D], center = true);

instead of

translate([0,0,(B+P+O)+(D/2)])
!cube([C, H+2, D], center = true);

--
View this message in context: http://forum.openscad.org/Errors-With-Translation-tp17306p17309.html
Sent from the OpenSCAD mailing list archive at Nabble.com.

You use the 'show-only' operator. It will ignore all of the design beside its operand. So translate() will not execute. If you wanna see the translation, try > ! translate([0,0,(B+P+O)+(D/2)]) > cube([C, H+2, D], center = true); instead of > translate([0,0,(B+P+O)+(D/2)]) > !cube([C, H+2, D], center = true); -- View this message in context: http://forum.openscad.org/Errors-With-Translation-tp17306p17309.html Sent from the OpenSCAD mailing list archive at Nabble.com.