OpenSCAD - The Programmers Solid 3D CAD Modeller (fork with Delaunay triangulation and bend operator)
 
 
 
 
 
 
Go to file
clifford 4c03dac385 Clifford Wolf:
Added GEB cube example



git-svn-id: http://svn.clifford.at/openscad/trunk@60 b57f626f-c46c-0410-a088-ec61d464b74c
2009-07-18 11:35:32 +00:00
examples Clifford Wolf: 2009-07-18 11:35:32 +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-01 09:48:25 +00:00
control.cc Clifford Wolf: 2009-07-01 09:48:25 +00:00
csgops.cc Clifford Wolf: 2009-07-03 07:51:22 +00:00
csgterm.cc Clifford Wolf: 2009-06-26 23:36:23 +00:00
dxfdata.cc Clifford Wolf: 2009-07-17 00:34:15 +00:00
dxflinextrude.cc Clifford Wolf: 2009-07-16 23:11:08 +00:00
dxfrotextrude.cc Clifford Wolf: 2009-07-17 00:34:15 +00:00
expr.cc Clifford Wolf: 2009-07-06 07:58:12 +00:00
func.cc Clifford Wolf: 2009-06-30 18:05:10 +00:00
glview.cc Clifford Wolf: 2009-07-02 15:12:10 +00:00
lexer.l Clifford Wolf: 2009-07-16 23:11:08 +00:00
mainwin.cc Clifford Wolf: 2009-07-16 23:11:08 +00:00
module.cc Clifford Wolf: 2009-07-17 00:34:15 +00:00
openscad.cc Clifford Wolf: 2009-07-03 13:56:34 +00:00
openscad.h Clifford Wolf: 2009-07-17 00:34:15 +00:00
openscad.pro Clifford Wolf: 2009-07-17 00:34:15 +00:00
parser.y Clifford Wolf: 2009-07-01 09:48:25 +00:00
polyset.cc Clifford Wolf: 2009-07-16 23:11:08 +00:00
primitives.cc Clifford Wolf: 2009-07-14 05:25:55 +00:00
render.cc Clifford Wolf: 2009-07-14 21:47:32 +00:00
transform.cc Clifford Wolf: 2009-07-03 07:51:22 +00:00
value.cc Clifford Wolf: 2009-07-01 08:06:06 +00:00
viewoff.cc Clifford Wolf: 2009-06-21 19:04:41 +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..