OpenSCAD Syllabus

Introduction

OpenSCAD is software for creating solid 3D CAD objects. It is free software and available for Linux/UNIX, MS Windows and Mac OS X.

OpenSCAD focuses on the CAD aspects of 3D modeling and is good for creating 3D models of machine parts or any part where you want to specify parameters.

OpenSCAD is not an interactive modeller. Instead it reads in statements that describes the object and it renders the 3D model from that code. This gives you full control over the modelling process and enables you to easily change any step in the process or make designs that are defined by configurable parameters.

OpenSCAD provides two main modelling techniques:
  1. Constructive Solid Geometry
  2. Extrusion of 2D outlines


Numbers in OpenSCAD are in millimeters. So circle(5); or circle(r=5); draws a circle with a radius of 5mm.

Programming 3D Objects allows students to use math concepts in practical ways, develop their spatial reasoning and problem solving skills, and to be engaged in an iterative process of designing and refining.