Jump to content

OpenSCAD User Manual/First Steps/Positioning an object

From Wikibooks, open books for an open world

We have already seen how to create a simple cuboid. Our next task is to attempt to use the translate positioning command to place an identical cuboid next to the existing cuboid. Type the data as shown below. There are a total of 4 lines of code. Press F5 or F6 function key when done to see the preview.

Usage example 1 - positioning an object:
cube([2,3,4]);
translate([3,0,0]) {
  cube([2,3,4]);
}
OpenSCAD positioning an object

Translate Operator May Not End A Statement

[edit | edit source]

Notice that there is no semicolon following the Translate Operator. An operator module must be followed by an Object Module.

green arrow pointing left to previous page
First Steps: Creating a model
First Steps green arrow pointing right to next page
First Steps: Changing color
Positioning an object