summaryrefslogtreecommitdiff
path: root/libs/assimp/contrib/poly2tri/README
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2022-04-16 11:55:09 -0500
committersanine <sanine.not@pm.me>2022-04-16 11:55:09 -0500
commitdb81b925d776103326128bf629cbdda576a223e7 (patch)
tree58bea8155c686733310009f6bed7363f91fbeb9d /libs/assimp/contrib/poly2tri/README
parent55860037b14fb3893ba21cf2654c83d349cc1082 (diff)
move 3rd-party librarys into libs/ and add built-in honeysuckle
Diffstat (limited to 'libs/assimp/contrib/poly2tri/README')
-rw-r--r--libs/assimp/contrib/poly2tri/README51
1 files changed, 51 insertions, 0 deletions
diff --git a/libs/assimp/contrib/poly2tri/README b/libs/assimp/contrib/poly2tri/README
new file mode 100644
index 0000000..883e9a5
--- /dev/null
+++ b/libs/assimp/contrib/poly2tri/README
@@ -0,0 +1,51 @@
+==================
+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