Draw a cuboid

Revision as of 21:43, 13 December 2010 by rosettacode>Markhobley (openscad)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The task is to draw a cuboid with relative dimensions of 2x3x4.

Openscad

Drawing a cuboid is easy in openscad :)

<lang openscad> // This will produce a simple cuboid cube([2,3,4]) </lang>

 
Draw a cuboid
You are encouraged to solve this task according to the task description, using any language you may know.