3D Primitive Shapes


  • An OpenSCAD Tutorial

    cylinder(); First to make it a little easier on the eyes type in this command: $fn=25 This will result in all the cylinders you draw to have 25 “faces”. Cylinders…

  • cube()

    Thumbnail for the post titled: cube()

    The Cube() primitive command will add a 6 sided figure with parallel sides. In it’s basic form the cube(); command does not need any parameters. You can create a cube…

  • sphere()

    Thumbnail for the post titled: sphere()

    The Sphere() primitive command will add a sphere to your model. Start out by add a sphere a single unit in radius. sphere(); You will see a very un-sphere looking…

  • cylinder()

    Thumbnail for the post titled: cylinder()

    The Cylinder() primitive command will add a cylinder or tapered cylinder to your model. In it’s basic form like the cube() and sphere(), the cylinder() command does not need any…