OpenSCAD - The Programmers Solid 3D CAD Modeller (fork with Delaunay triangulation and bend operator)
 
 
 
 
 
 
Go to file
clifford 6a12327e2a Clifford Wolf:
Added support for ASCII stl files



git-svn-id: http://svn.clifford.at/openscad/trunk@102 b57f626f-c46c-0410-a088-ec61d464b74c
2009-10-14 12:34:50 +00:00
examples Clifford Wolf: 2009-10-05 09:38:48 +00:00
COPYING Clifford Wolf: 2009-06-20 12:10:55 +00:00
README Clifford Wolf: 2009-06-24 10:59:15 +00:00
context.cc Clifford Wolf: 2009-07-24 18:18:56 +00:00
control.cc Clifford Wolf: 2009-07-01 09:48:25 +00:00
csgops.cc Stefan Farthofer (aka meta/metaz): 2009-08-04 18:55:25 +00:00
csgterm.cc Stefan Farthofer (aka meta/metaz): 2009-08-04 18:55:25 +00:00
dxfdata.cc Clifford Wolf: 2009-08-10 07:18:35 +00:00
dxfdim.cc Clifford Wolf: 2009-07-24 21:57:46 +00:00
dxflinextrude.cc Clifford Wolf: 2009-08-10 07:18:35 +00:00
dxfrotextrude.cc Clifford Wolf: 2009-08-10 07:18:35 +00:00
dxftess.cc Stefan Farthofer: 2009-09-24 08:40:34 +00:00
expr.cc Clifford Wolf: 2009-07-23 16:00:38 +00:00
func.cc Clifford Wolf: 2009-07-24 20:50:30 +00:00
glview.cc Clifford Wolf: 2009-10-14 09:44:41 +00:00
import.cc Clifford Wolf: 2009-10-14 12:34:50 +00:00
lexer.l Clifford Wolf: 2009-07-26 16:36:52 +00:00
mainwin.cc Clifford Wolf: 2009-10-14 09:44:41 +00:00
module.cc Clifford Wolf: 2009-10-14 12:34:50 +00:00
openscad.cc Clifford Wolf: 2009-07-28 12:53:52 +00:00
openscad.h Clifford Wolf: 2009-10-14 12:34:50 +00:00
openscad.pro Clifford Wolf: 2009-10-14 12:34:50 +00:00
parser.y Clifford Wolf: 2009-07-26 16:26:05 +00:00
polyset.cc Stefan Farthofer (aka meta/metaz): 2009-08-04 18:55:25 +00:00
primitives.cc Clifford Wolf: 2009-10-05 09:38:48 +00:00
render.cc Clifford Wolf: 2009-09-22 07:48:56 +00:00
surface.cc Clifford Wolf: 2009-08-10 07:18:35 +00:00
transform.cc Clifford Wolf: 2009-10-14 07:59:44 +00:00
value.cc Clifford Wolf: 2009-07-20 17:45:39 +00:00

README

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

OpenSCAD (Open Solid CAD) is a tool for designing solid 3D objects using CSG
techniques. Basically OpenSCAD is a compiler that transforms descriptions of
3D objects written in a special computer language to 3D models.

FIXME: Add some more introduction..


PREREQUISITES
=============

To build OpenSCAD, you need some libraries and tools. The version numbers in
brakets specify the versions I have used for my tests. Other versions may or
may not work as well..

* Qt4 (4.5.1):
  http://www.qtsoftware.com/

* CGAL (3.4):
  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.1.0):
  http://www.opencsg.org/

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

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

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

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


LANGUAGE DESCRIPTION
====================

FIXME: This still needs to be written..