OpenSCAD - The Programmers Solid 3D CAD Modeller (fork with Delaunay triangulation and bend operator)
 
 
 
 
 
 
Go to file
Marius Kintel 0fee2c5540 Killed some memory leaks 2011-11-27 05:20:18 +01:00
contrib Emacs major mode by Len Trigg 2010-04-07 10:05:09 +00:00
doc Updated testing docs 2011-11-26 19:25:31 +01:00
examples Removed use of deprecated functionality from examples, with a few temporary exceptions 2011-11-26 19:41:48 +01:00
icons Moved progress display to status bar. Disabled by default but can be enabled in .pro file with CONFIG += progresswidget. Please test and enable as default if it looks good on all platforms. 2010-02-10 15:13:12 +00:00
libraries updated to HEAD 2011-11-24 23:44:35 +01:00
patches Cleaned up the OGL_helper patches a bit 2011-09-29 23:13:22 +02:00
qxs Cleaned up qnfa file so it is more taylored to openscad 2010-04-11 10:01:37 +01:00
scripts Reverted to boost-1.47 for now - 1.48 causes some tests to fail; *_polygon-holes-touch *_polygon-mesh 2011-11-23 14:35:43 +01:00
src bugfix: We didn't correctly set back CGAL error behaviour after changing it 2011-11-26 23:31:11 +01:00
test-code Removed old code made redundant by tests 2010-10-31 12:54:23 +01:00
testdata Modified test to not cause z buffer fighting 2011-11-27 02:47:15 +01:00
tests Killed some memory leaks 2011-11-27 05:20:18 +01:00
.gitignore updated ignores 2011-11-07 03:51:32 +01:00
.gitmodules Bundle MCAD library 2011-09-08 03:27:07 +02:00
COPYING Clifford Wolf: 2010-02-01 09:34:18 +00: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 Updated version requirements of 3rd party libraries 2011-10-03 01:38:12 +02:00
RELEASE_NOTES Added support for 3D object in the hull() module 2011-11-23 16:11:48 +01:00
bison.pri update build files 2011-01-25 00:21:36 +01:00
boost.pri add BOOST_ROOT detection to test CMakeLists, for custom boost locations 2011-11-05 01:19:48 +01:00
cgal.pri bring inline with master 2011-11-01 11:47:37 -07:00
eigen2.pri fix broken linux build (eigen) 2011-10-26 02:20:01 -04:00
flex.pri Windows build fixes from Kliment Yanev 2011-06-05 19:55:50 +02:00
glew.pri integrate Brad Pitcher's cross compile linux->win32-mingw qmake stuff 2011-10-25 19:10:28 -05:00
mjau.gdb moved location 2011-08-02 01:44:14 +02:00
opencsg.pri fix broken build on systems that use case sensitive filenames (linux) 2011-08-03 17:45:40 -05:00
openscad.pro Ported QCache and related code away from Qt 2011-11-09 03:18:32 +01:00
openscad.qrc Moved progress display to status bar. Disabled by default but can be enabled in .pro file with CONFIG += progresswidget. Please test and enable as default if it looks good on all platforms. 2010-02-10 15:13:12 +00:00
openscad_win32.rc Copyright updates 2011-01-21 02:21:09 +01:00
setenv_mjau.sh Testing ccache 2011-09-11 07:33:35 +02:00
valgrind.supp Killed some memory leaks 2011-11-27 05:20:18 +01:00
version.pri Fix for dates being interpreted as octal numbers 2011-11-08 23:27:37 +01:00

README

WHAT IS IT?
===========

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 modelling
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 modeller. 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 modelling process and enables you to easily
change any step in the modelling process or make designs that are defined by
configurable parameters.

OpenSCAD provides two main modelling 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 parametes
from DXF files. Besides DXF files OpenSCAD can read and create 3D models in the
STL and OFF file formats.


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..

* Qt4 (4.4 - 4.7):
  http://www.qtsoftware.com/

* CGAL (3.6 - 3.9):
  http://www.cgal.org/

* GMP (5.0.x):
  http://www.gmplib.org/

* MPFR (3.0.x):
  http://www.mpfr.org/

* boost (1.35 - 1.47)
  http://www.boost.org/

* cmake (2.6.x, required by CGAL)
  http://www.cmake.org/

* OpenCSG (1.3.0):
  http://www.opencsg.org/

* GLEW (1.5.x, 1.6.x, also bundled with OpenCSG)
  http://glew.sourceforge.net/

* Eigen2 (2.0.13->)
  http://eigen.tuxfamily.org/

* GCC C++ Compiler (4.2, 4.3.1):
  http://gcc.gnu.org/

* Bison (2.4):
  http://www.gnu.org/software/bison/

* Flex (2.5.35):
  http://flex.sourceforge.net/


BUILDING OPENSCAD
================

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.


DOCUMENTATION
=============

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