OpenSCAD - The Programmers Solid 3D CAD Modeller (fork with Delaunay triangulation and bend operator)
 
 
 
 
 
 
Go to file
clifford bd964ba98b Clifford Wolf:
Changed example022.scad indenting to use the same
	indenting style as the other examples



git-svn-id: http://svn.clifford.at/openscad/trunk@474 b57f626f-c46c-0410-a088-ec61d464b74c
2010-03-02 06:22:21 +00:00
doc sync 2010-02-23 20:16:57 +00:00
examples Clifford Wolf: 2010-03-02 06:22:21 +00: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 rounder -> boxes and added sidesonly parameter 2010-02-28 14:54:59 +00:00
patches OpenCSG -> 1.3.0 2010-02-09 09:52:42 +00:00
scripts Clifford Wolf: 2010-03-02 06:18:09 +00:00
src Explicitly include stdio.h for printf and stderr 2010-03-02 03:16:30 +00:00
test-code Test app for dumping node tree 2010-03-01 00:38:49 +00:00
testdata Bug reported by Laszlo Krekacs 2010-01-30 13:21:31 +00: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 We need CGAL 3.5 2010-03-02 03:16:40 +00:00
RELEASE_NOTES Clifford Wolf: 2010-02-28 13:59:43 +00:00
cgal.pri resource and build system update 2010-01-30 04:27:59 +00:00
opencsg.pri Extracted OpenCSG code to separate files 2010-02-10 16:43:43 +00:00
openscad.pro Clifford Wolf: 2010-03-02 06:18:09 +00: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 resource and build system update 2010-01-30 04:27:59 +00:00
valgrind.supp Clifford Wolf: 2010-01-10 12:49:51 +00: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.6):
  http://www.qtsoftware.com/

* CGAL (3.5):
  http://www.cgal.org/

* boost (1.35, required by CGAL)
  http://www.boost.org/

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

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

* GLEW (bundled with OpenCSG)
  http://glew.sourceforge.net/

* Eigen2 (2.0.11)
  http://eigen.tuxfamily.org/

* GCC C++ Compiler (4.0, 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.