OpenSCAD - The Programmers Solid 3D CAD Modeller (fork with Delaunay triangulation and bend operator)
 
 
 
 
 
 
Go to file
Miro Hrončok c514f8041e Fixed FSF address 2012-10-07 19:52:43 +02:00
contrib added auto-loads to scad-mode.el so when it is installed via 2012-07-09 16:43:42 +10:00
doc look for EIGENDIR env var. (also look for EIGEN2DIR for backwards compatability) 2012-08-19 08:10:33 -05:00
examples Added better example023 with test output. 2012-02-18 21:22:31 -05:00
icons add flattr icon 2012-08-04 22:35:53 -05:00
libraries Updated MCAD 2012-02-18 13:47:17 +01:00
patches No need to link OpenCSG with Qt 2012-07-29 17:25:59 -04:00
qxs Cleaned up qnfa file so it is more taylored to openscad 2010-04-11 10:01:37 +01:00
scripts Updated mpfr, boost, glew 2012-08-21 21:10:47 -04:00
src bugfix: parser errors wasn't treated correctly, causing cmd-line tools to return without an error code, as well as error highlighting in the editor being broken 2012-10-06 18:01:17 -04:00
test-code Removed old code made redundant by tests 2010-10-31 12:54:23 +01:00
testdata add line to hull test 2012-08-22 12:23:17 +02:00
tests Merge pull request #186 from openscad/issue185 2012-08-21 17:31:28 -07: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 Experimental Apple Event hack; you can now do 'tell application "OpenSCAD" to reload' 2010-02-02 01:01:38 +00: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 eigen version in README. dont use alignment in dxfdata vector. 2012-08-18 21:16:34 -05:00
RELEASE_NOTES sync 2012-04-22 19:35:23 -04:00
bison.pri changes to enable building on NetBSD 2012-01-03 18:21:28 +01:00
boost.pri dont use boost-chrono if not doing mingw build 2012-07-15 22:09:40 +02:00
cgal.pri initial steps towards support of clang compiler 2012-07-20 15:23:16 -05:00
common.pri look for EIGENDIR env var. (also look for EIGEN2DIR for backwards compatability) 2012-08-19 08:10:33 -05:00
eigen.pri fix small bugs in eigen build scripts 2012-08-19 08:27:49 -05:00
flex.pri changes to enable building on NetBSD 2012-01-03 18:21:28 +01:00
glew.pri add documentation to workaround GLEWDIR bug 2012-05-29 02:29:29 +02:00
mingw-cross-env.pri rework mingw build to use 'out of source build' for better dual-building 2012-08-01 20:36:27 -05:00
mjau.gdb moved location 2011-08-02 01:44:14 +02:00
opencsg.pri Some more build system cleaning 2011-12-15 05:17:04 +01:00
openscad.pro bugfix: There is a bug in the stdc++ library on Mac OS 10.5 which messes up some STL templates. This should fix it, courtesy of http://stackoverflow.com/questions/3484043/os-x-program-runs-on-dev-machine-crashing-horribly-on-others 2012-08-22 00:22:35 -04:00
openscad.pro.user Replaced static paths with $$PWD and $QTDIR 2012-02-15 08:42:53 -05:00
openscad.qrc Extracted the about box contents to an external file for easier editing 2012-08-21 21:08:55 -04:00
openscad_win32.rc Copyright updates 2011-01-21 02:21:09 +01:00
setenv_mjau.sh Qt 4.8 requires explicit QMAKESPEC 2012-07-09 17:31:02 -04: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
win32.pri fix qmake under mingw-cross-compile 2011-12-16 21:03:10 -06: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, 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 init
git submodule update

Building for Mac OS X

First, make sure that you have XCode installed to get GCC. 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

We currently don't use MacPorts or brew to install the prerequisite libraries because CGAL doesn't exist on brew and opencsg doesn't exist on ports. And more importantly, there are some patches to GMP in the compilation process.

After that, follow the Compilation instructions below.

Building for newer Linux distributions

First, make sure that you have development tools installed to get GCC. Then after you've cloned this git repository, use a package manager to download packages for the dependency libraries listed above. Convenience scripts are provided for some popular systems:

Ubuntu, Debian:    ./scripts/ubuntu-build-dependencies.sh
OpenSUSE:          ./scripts/opensuse-build-dependencies.sh
Fedora:            ./scripts/fedora-build-dependencies.sh

Check your library versions to make sure they meet the minimum requirements listed above. After that follow the Compilation instructions below.

Building for older Linux or building without root access

First, make sure that you have development tools installed to get GCC. Then after you've cloned this git repository, run the script that sets up the environment variables.

source ./scripts/setenv-linbuild.sh

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

./scripts/linux-build-dependencies.sh

Then add LD_LIBRARY_PATH=$HOME/openscad_deps to your ~/.bashrc 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, run the script that sets up the environment variables.

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

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

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

Then skip the compilation instructions below. Instead, build an installer:

OSTYPE=mingw-cross-env ./scripts/release-common.sh

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