modified Authors file

This commit is contained in:
zzzzrrr 2010-01-30 13:10:18 -05:00
parent c18dcd4eaa
commit 7cbc314b7b
2 changed files with 6 additions and 3 deletions

View File

@ -1,6 +1,6 @@
Primary Contributors:
Mason Green <mason.green@gmail.com> (C++)
Mason Green <mason.green@gmail.com> (C++, Python)
Thomas Åhlén <thahlen@gmail.com> (Java)
Other Contributors:

View File

@ -135,6 +135,7 @@ int main(int argc, char* argv[])
// Step 1 - Create CDT and add primary polyline
CDT* cdt = new CDT(points);
/*
// Step 2 - Add holes if necessary
string s(argv[1]);
if(s.find("dude.dat", 0) != string::npos) {
@ -148,6 +149,7 @@ int main(int argc, char* argv[])
polylines.push_back(head_hole);
polylines.push_back(chest_hole);
}
*/
// Step 3 - Triangulate!
cdt->Triangulate();
@ -178,6 +180,7 @@ void Init()
ShutDown(1);
glfwSetWindowTitle("Poly2Tri - C++");
glfwSwapInterval(1);
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);