Transformation


  • rotate_extrude()

    Thumbnail for the post titled: rotate_extrude()

    The rotate_extrude() command operates on 2d shapes by extruding them around the Z-axis. To create a rotated extrusion in another axis apply a transformation after the rotate_extrude operation. To create…

  • translate() – Translate Modifier Tutorial

    Thumbnail for the post titled: translate() – Translate Modifier Tutorial

    Related Links The Official Wiki – https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Text An Example from OpenSCAD.org – text on cube.scad OpenSCAD Translate Modifier The translate command will “move” the child object the given number of…

  • mirror()

    Thumbnail for the post titled: mirror()

    The mirror() command is a transformation. This means the mirror command acts on an object ( child ). To start we will add a cube. cube(); Above the cube add…

  • difference()

    Thumbnail for the post titled: difference()

    The difference() modifier will subtract the children of the object, from the first item in the modifier brackets. Let’s start by subtracting a sphere from a cube. First add a…

  • rotate()

    Thumbnail for the post titled: rotate()

    The rotate modifier will rotate the children of the modifier. It will rotate all the children around the Z-Axis at the origin. Start by adding a cube. cube() render the…