2D constrained Delaunay triangulation library
Go to file
Mason Green 56510a42f7 fixed a few gcc warnings 2011-06-04 14:57:00 -04:00
poly2tri fixed a few gcc warnings 2011-06-04 14:57:00 -04:00
testbed memory cleanup 2010-04-25 12:40:54 -04:00
AUTHORS modified Authors file 2010-01-30 13:10:18 -05:00
LICENSE changed license headers 2010-01-22 15:03:43 -05:00
README removed bad import; updated README 2010-02-10 07:14:38 -05:00
waf updated waf 2011-03-08 09:12:11 -05:00
wscript updated waf 2011-03-08 09:12:11 -05:00

README

==================
INSTALLATION GUIDE
==================

------------
Dependencies
------------

  Core poly2tri lib:
  - Standard Template Library (STL)
  
  Testbed:
  - gcc
  - OpenGL
  - GLFW (http://glfw.sf.net)
  - Python
 
Waf (http://code.google.com/p/waf/) is used to compile the testbed.   
A waf script (86kb) is included in the repositoty.

----------------------------------------------
Building the Testbed
----------------------------------------------

Posix/MSYS environment:

  ./waf configure
  ./waf build

Windows command line:

  python waf configure
  python waf build

----------------------------------------------
Running the Examples
----------------------------------------------

Load data points from a file:
p2t <filename> <center_x> <center_y> <zoom>

Random distribution of points inside a consrained box:
p2t random <num_points> <box_radius> <zoom>

Examples:

  ./p2t dude.dat 300 500 2
  ./p2t nazca_monkey.dat 0 0 9
  
  ./p2t random 10 100 5.0
  ./p2t random 1000 20000 0.025