OpenSCAD - The Programmers Solid 3D CAD Modeller (fork with Delaunay triangulation and bend operator)
 
 
 
 
 
 
Go to file
clifford ae9cc6d1ed Clifford Wolf:
OpenCSG support looks ok now



git-svn-id: http://svn.clifford.at/openscad/trunk@27 b57f626f-c46c-0410-a088-ec61d464b74c
2009-06-26 22:01:53 +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-06-26 04:32:52 +00:00
csg.cc Clifford Wolf: 2009-06-25 19:53:12 +00:00
csgterm.cc Clifford Wolf: 2009-06-25 08:12:41 +00:00
example.scad Clifford Wolf: 2009-06-26 22:01:53 +00:00
expr.cc Clifford Wolf: 2009-06-23 10:31:25 +00:00
func.cc Clifford Wolf: 2009-06-23 10:31:25 +00:00
glview.cc Clifford Wolf: 2009-06-26 22:01:53 +00:00
lexer.l Clifford Wolf: 2009-06-26 04:32:52 +00:00
mainwin.cc Clifford Wolf: 2009-06-26 22:01:53 +00:00
module.cc Clifford Wolf: 2009-06-26 04:32:52 +00:00
openscad.cc Clifford Wolf: 2009-06-23 19:56:46 +00:00
openscad.h Clifford Wolf: 2009-06-26 22:01:53 +00:00
openscad.pro Clifford Wolf: 2009-06-26 10:56:50 +00:00
parser.y Clifford Wolf: 2009-06-23 19:56:46 +00:00
polyset.cc Clifford Wolf: 2009-06-26 22:01:53 +00:00
primitive.cc Clifford Wolf: 2009-06-26 10:56:50 +00:00
trans.cc Clifford Wolf: 2009-06-24 10:59:15 +00:00
value.cc Clifford Wolf: 2009-06-23 10:31:25 +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..