OpenSCAD User Manual
OpenSCAD is software for creating solid 3D CAD objects.
It is free software and available for GNU/Linux, Microsoft Windows and Mac OS X.
Introduction
editUnlike most free software for creating 3D models (such as the well-known application Blender), OpenSCAD does not focus on the artistic aspects of 3D modelling, but instead focuses on the CAD aspects. So it might be the application you are looking for when you are planning to create 3D models of machine parts, but probably is not what you are looking for when you are more interested in creating computer-animated movies or organic life-like models.
OpenSCAD, unlike many CAD products, is not an interactive modeler. Instead it is something like a 2D/3D-compiler that reads in a program file that describes the object and renders the model from this file. This gives you (the designer) full control over the modelling process. This enables you to easily change any step in the modelling process and make designs that are defined by configurable parameters.
OpenSCAD has two main operating modes, Preview and Render. Preview is relatively fast using 3D graphics and the computer's GPU, but is an approximation of the model and can produce artifacts; Preview uses OpenCSG and OpenGL. Render generates exact geometry and a fully tessellated mesh. It is not an approximation and as such it is often a lengthy process, taking minutes or hours for larger designs. Render uses CGAL as its geometry engine.
OpenSCAD provides two types of 3D modelling:
- Constructive Solid Geometry (CSG)
- extrusion of 2D primitives into 3D space.
SVG is used for 2D while Autocad DXF files can be used as well for the data exchange format for 2D outlines. In addition to 2D paths for extrusion it is also possible to read design parameters from DXF files. Besides DXF files, OpenSCAD can read and create 3D models in the open 3mf, STL, OFF and many more file formats.
OpenSCAD can be downloaded from https://www.openscad.org/. More information is available on the mailing list.
Additional Resources
editA clear guided introduction to using OpenSCAD and to the OpenSCAD language is available in the OpenSCAD Tutorial.
For Teachers: a basic 25-slide presentation from 2014 is available under GNUFDL to walk your students through the process of using OpenSCAD here.
Fablab Lannion (France) edited a nice French-language interactive tutorial that you might appreciate.
A "cheat sheet" is a useful quick reference for the OpenSCAD language, with each item linking back to this Wikibook.
A list of books can be found here.
History
editPeriodically the two manuals below get cleaned up or have major transitions. Consider archiving the manuals prior to starting a major update.
This can be done for the two 'printable version' links below to the Internet Archive
- 2018-04-25 The OpenSCAD User Manual - Print Version & The OpenSCAD Language - Print Version
- 2019-07-22 The OpenSCAD User Manual Which includes links to the archives of the above two printed versions (as of this date).
The Wayback Machine no longer has a free user requested site archive, so below is just the two 'printable version' manuals
The OpenSCAD User Manual
edit- Introduction
- First Steps
- The OpenSCAD User Interface
- Input Devices
- Customizer
- Import - STL, 3MF, OFF, AMF, DXF, SVG, CSG
- Export - STL, 3MF, OFF, AMF, DXF, SVG, CSG, PNG
- Example Projects
- Paths
- Using an external Editor with OpenSCAD
- Integration with other applications
- Using OpenSCAD in a command line environment
- Building OpenSCAD from Sources
- Frequently Asked Questions
- Libraries
- Tips and Tricks
- Command Glossary - Very short name and syntax reference
The OpenSCAD Language Reference
edit- The OpenSCAD Language
- General - READ THIS FIRST - comments, values and data types, variables, vectors, getting input
- 3D objects -
- 2D Objects
- 2D Primitives - square, circle, polygon
- Text - Generate text using installed or user supplied font files.
- 2D to 3D - linear_extrude, rotate_extrude
- Transform
- Boolean combination
- Other Functions and Operators
- Conditional and Iterator Functions - for, intersection_for, if, conditional ? :, assign, let
- Mathematical Operators - General, Vectors, Matrix multiplication
- Mathematical Functions
- Trigonometric (cos sin tan acos asin atan atan2)
- Other (abs ceil concat cross exp floor ln len let log lookup max min norm pow rands round sign sqrt)
- String Functions - str, chr, ord
- Type Test Functions - is_undef, is_bool, is_num, is_string, is_list
- List Comprehensions
- Other Language Features - Special '$' variables, echo, render, surface, search , version(), version_num(), parent_module(n) and $parent_modules, assert
- User-Defined Functions and Modules - Functions, Modules, Children
- Debugging aids - % # ! * echo
- External libraries and code files
- include - SCAD, CSG
- use - SCAD
- import - STL, OFF, DXF
- import_dxf - Deprecated
- import_stl - Deprecated
- export - STL, OFF, AMF, 3MF, DXF, SVG, PNG, CSG
- surface - PNG
Work in progress
editThis section contains documentation about ongoing work which is available as experimental features in snapshot versions of OpenSCAD or not yet integrated at all and pending in a branch or pull-request at the OpenSCAD github repository.