OpenSCAD - The Programmers Solid 3D CAD Modeller (fork with Delaunay triangulation and bend operator)
 
 
 
 
 
 
Go to file
Marius Kintel 6c7d386a33 Point documentation to openscad.org/documentation.html 2013-06-17 23:25:01 -04:00
contrib Added some missing functions and modules 2013-06-01 16:06:19 -04:00
doc Upload source code to files.openscad.org 2013-06-17 01:58:59 -04:00
examples Updated cmd-line parameter doc 2013-06-13 01:02:29 -04:00
icons Added document icon for Mac 2013-02-11 21:50:53 -05:00
libraries Updated MCAD 2013-06-10 01:20:59 -04:00
patches Minor patch to Sparkle to deal with version numbered app bundles 2013-02-11 21:45:25 -05:00
qxs Cleaned up qnfa file so it is more taylored to openscad 2010-04-11 10:01:37 +01:00
scripts Merge branch 'master' of github.com:openscad/openscad 2013-06-17 22:20:11 -04:00
src Point documentation to openscad.org/documentation.html 2013-06-17 23:25:01 -04:00
test-code Removed old code made redundant by tests 2010-10-31 12:54:23 +01:00
testdata Clamp linear_extrude height to 0. Fixes #405 2013-06-15 12:48:09 -04:00
tests updated ignores 2013-06-17 00:02:26 -04:00
.gitignore Added /openscad to .gitignore 2012-04-24 01:14:33 +02:00
.gitmodules Make MCAD submodule relative to openscad toplevel. 2012-02-18 18:37:53 +01:00
COPYING Fixed FSF address 2012-10-07 19:52:43 +02:00
Info.plist New feature: Drag and drop stl, off or dxf files will create an import statement 2013-05-08 00:00:09 +02:00
OpenSCAD.sdef Experimental Apple Event hack; you can now do 'tell application "OpenSCAD" to reload' 2010-02-02 01:01:38 +00:00
README.md update readme 2013-05-18 15:40:01 -05:00
RELEASE_NOTES Removed confusing entry 2013-06-17 00:20:26 -04:00
appcast-snapshots.xml.in Added support for signing binaries 2013-02-11 21:44:48 -05:00
appcast.xml.in Added support for signing binaries 2013-02-11 21:44:48 -05:00
bison.pri merge branch to get windows "library path" working. tweak build system, 2013-05-25 22:37:26 -05:00
boost.pri windows - library path find, also windows build fixes 2013-05-26 20:24:53 -05:00
cgal.pri windows - library path find, also windows build fixes 2013-05-26 20:24:53 -05:00
common.pri windows - library path find, also windows build fixes 2013-05-26 20:24:53 -05:00
dsa_pub.pem Added support for signing binaries 2013-02-11 21:44:48 -05:00
eigen.pri fix eigen bugs mingw32/64 2013-05-18 17:49:26 +02:00
flex.pri Modified parse to allow overloading of variables in local blocks. Also did some minor cleanups while at it. Test cases missing 2013-04-26 18:32:19 -04:00
glew.pri detect netbsd / freebsd after linux not before, for bison/flex. 2012-12-23 17:14:58 -06:00
mingw-cross-env.pri .pri file typo removal 2013-06-15 09:04:18 -05:00
mjau.gdb First version of automatic updates for Mac 2013-02-05 00:36:25 -05:00
opencsg.pri Some more build system cleaning 2011-12-15 05:17:04 +01:00
openscad.pro a few fixes for netbsd 2013-06-08 23:49:21 -05:00
openscad.pro.user Replaced static paths with $$PWD and $QTDIR 2012-02-15 08:42:53 -05:00
openscad.qrc First version of automatic updates for Mac 2013-02-05 00:36:25 -05:00
openscad_win32.rc Copyright updates 2011-01-21 02:21:09 +01:00
setenv_mac-clang.sh Qt fixes for clang 2013-03-11 10:24:55 -04:00
setenv_mjau.sh First version of automatic updates for Mac 2013-02-05 00:36:25 -05:00
valgrind.supp Killed some memory leaks 2011-11-27 05:20:18 +01:00
version.pri Added OPENSCAD_COMMIT define to show which git commit a binary actually is built from in the about box. Pass -c to release_common.sh to turn this on. Please use this for development builds, see publish-macosx.sh for how development vs. release is handled 2012-01-14 17:37:34 +01:00
win.pri windows - library path find, also windows build fixes 2013-05-26 20:24:53 -05:00
winconsole.pri add wrapper code from nop head, mod build scripts 2013-01-21 14:25:14 +01:00

README.md

What is OpenSCAD?

Flattr this git repo

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

Unlike most free software for creating 3D models (such as the famous application Blender) it does not focus on the artistic aspects of 3D modeling but instead on the CAD aspects. Thus it might be the application you are looking for when you are planning to create 3D models of machine parts but pretty sure is not what you are looking for when you are more interested in creating computer-animated movies.

OpenSCAD is not an interactive modeler. Instead it is something like a 3D-compiler that reads in a script file that describes the object and renders the 3D model from this script file (see examples below). This gives you (the designer) full control over the modeling process and enables you to easily change any step in the modeling process or make designs that are defined by configurable parameters.

OpenSCAD provides two main modeling techniques: First there is constructive solid geometry (aka CSG) and second there is extrusion of 2D outlines. As data exchange format format for this 2D outlines Autocad DXF files are used. 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 STL and OFF file formats.

Getting started

You can download the latest binaries of OpenSCAD at http://www.openscad.org. Install binaries as you would any other software.

When you open OpenSCAD, you'll see three frames within the window. The left frame is where you'll write code to model 3D objects. The right frame is where you'll see the 3D rendering of your model.

Let's make a tree! Type the following code into the left frame:

cylinder(h = 30, r = 8);

Then render the 3D model by hitting F5. Now you can see a cylinder for the trunk in our tree. Now let's add the bushy/leafy part of the tree represented by a sphere. To do so, we will union a cylinder and a sphere.

union() {
  cylinder(h = 30, r = 8);
  sphere(20);
}

But, it's not quite right! The bushy/leafy are around the base of the tree. We need to move the sphere up the z-axis.

union() {
  cylinder(h = 30, r = 8);
  translate([0, 0, 40]) sphere(20);
}

And that's it! You made your first 3D model! There are other primitive shapes that you can combine with other set operations (union, intersection, difference) and transformations (rotate, scale, translate) to make complex models! Check out all the other language features in the OpenSCAD Manual.

Documentation

Have a look at the OpenSCAD Homepage (http://openscad.org/) for documentation.

Building OpenSCAD

To build OpenSCAD from source, follow the instructions for the platform applicable to you below.

Prerequisites

To build OpenSCAD, you need some libraries and tools. The version numbers in brackets specify the versions which have been used for development. Other versions may or may not work as well.

If you're using a newer version of Ubuntu, you can install these libraries from aptitude. If you're using Mac, or an older Linux/BSD, there are build scripts that download and compile the libraries from source. Follow the instructions for the platform you're compiling on below.

Getting the source code

Install git (http://git-scm.com/) onto your system. Then run a clone:

git clone git://github.com/openscad/openscad.git

This will download the latest sources into a directory named 'openscad'.

To pull the MCAD library (http://reprap.org/wiki/MCAD), do the following:

cd openscad
git submodule update --init

Building for Mac OS X

Prerequisites:

  • XCode, including XCode command-line tools (install from XCode Preferences).
  • CMake, which can be installed manually or through MacPorts/homebrew.

Then after you've cloned this git repository, run the script that sets up the environment variables.

source setenv_mjau.sh

Then run the script to compile all the prerequisite libraries above:

./scripts/macosx-build-dependencies.sh

You can also install the prerequisites using MacPorts. Unfortunately, brew doesn't yet support CGAL and OpenCSG.

After that, follow the Compilation instructions below.

Building for Linux/BSD

First, make sure that you have git installed (often packaged as 'git-core' or 'scmgit'). Once you've cloned this git repository, download and install the dependency packages listed above using your system's package manager. A convenience script is provided that can help with this process on some systems:

./scripts/uni-get-dependencies.sh

After installing dependencies, check their versions. You can run this script to help you:

./scripts/check-dependencies.sh

Take care that you don't have old local copies anywhere (/usr/local/). If all dependencies are present and of a high enough version, skip ahead to the Compilation instructions.

Building for Linux/BSD on systems with older or missing dependencies

If some of your system dependency libraries are missing or old, then you can download and build newer versions into $HOME/openscad_deps by following this process. First, run the script that sets up the environment variables.

source ./scripts/setenv-unibuild.sh

Then run the script to compile all the prerequisite libraries above:

./scripts/uni-build-dependencies.sh

This may take an hour or more, depending on your network and system. It is recommended to have at least 1 gigabyte of free disk space. As a special timesaver if you are only missing CGAL and OpenCSG, you can do this instead:

./scripts/uni-build-dependencies.sh opencsg
./scripts/uni-build-dependencies.sh cgal

Note that huge dependencies like gcc or qt are not included here, only the smaller ones (boost, CGAL, opencsg, etc). After the build, again check dependencies.

./scripts/check-dependencies.sh

After that, follow the Compilation instructions below.

Building for Windows

OpenSCAD for Windows is usually cross-compiled from Linux. If you wish to attempt an MSVC build on Windows, please see this site: http://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Building_on_Windows

To cross-build, first make sure that you have development tools installed to get GCC. Then after you've cloned this git repository, start a new clean bash shell and run the script that sets up the environment variables.

source ./scripts/setenv-mingw-xbuild.sh 32

Then run the script to download & compile all the prerequisite libraries above:

./scripts/mingw-x-build-dependencies.sh 32

Note that this process can take several hours, as it uses the http://mxe.cc system to cross-build many libraries. After it is complete, build OpenSCAD and package it to an installer:

./scripts/release-common.sh mingw32

If you wish you can only build the openscad.exe binary:

cd mingw32
qmake .. CONFIG+=mingw-cross-env
make

For a 64-bit Windows cross-build, replace 32 with 64 in the above instructions.

Compilation

First, run 'qmake' from Qt4 to generate a Makefile. On some systems you need to run 'qmake4', 'qmake-qt4' or something alike to run the qt4 version of the tool.

Then run make. Finally you might run 'make install' as root or simply copy the 'openscad' binary (OpenSCAD.app on Mac OS X) to the bin directory of your choice.

If you had problems compiling from source, raise a new issue in the issue tracker on the github page.

This site and it's subpages can also be helpful: http://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Building_OpenSCAD_from_Sources