Release including TeX sources.

This commit is contained in:
Lutz Kettner 1998-02-10 16:43:17 +00:00
parent 7e7dfe9855
commit 0b6161dd97
8 changed files with 8 additions and 8 deletions

View File

@ -45,7 +45,7 @@ int main()
CGAL_Window_stream W(512, 512);
W.init(-256.0, 255.0, -256.0);
W << CGAL_BLACK;
for( vector<Segment>::iterator i = segs.begin(); i != segs.end(); i++)
for( typename vector<Segment>::iterator i = segs.begin(); i != segs.end(); i++)
W << *i;
/* Wait for mouse click in window. */

View File

@ -43,7 +43,7 @@ int main()
CGAL_Window_stream W(512, 512);
W.init(-256.0, 255.0, -256.0);
W << CGAL_BLACK;
for( vector<Triangle>::iterator i = triang.begin(); i != triang.end(); i++)
for( typename vector<Triangle>::iterator i = triang.begin(); i != triang.end(); i++)
W << *i;
/* Wait for mouse click in window. */

View File

@ -52,7 +52,7 @@ int main()
CGAL_Window_stream W(512, 512);
W.init(-256.0, 255.0, -256.0);
W << CGAL_BLACK;
for( vector<Point>::iterator i = points.begin(); i != points.end(); i++)
for( typename vector<Point>::iterator i = points.begin(); i != points.end(); i++)
W << *i;
/* Wait for mouse click in window. */

View File

@ -47,7 +47,7 @@ int main()
CGAL_Window_stream W(524, 524);
W.init(-262.0, 261.0, -262.0);
W << CGAL_BLACK;
for( vector<Point>::iterator i = points.begin(); i != points.end(); i++)
for( typename vector<Point>::iterator i = points.begin(); i != points.end(); i++)
W << *i;
/* Wait for mouse click in window. */

View File

@ -45,7 +45,7 @@ int main()
CGAL_Window_stream W(512, 512);
W.init(-256.0, 255.0, -256.0);
W << CGAL_BLACK;
for( vector<Segment>::iterator i = segs.begin(); i != segs.end(); i++)
for( typename vector<Segment>::iterator i = segs.begin(); i != segs.end(); i++)
W << *i;
/* Wait for mouse click in window. */

View File

@ -43,7 +43,7 @@ int main()
CGAL_Window_stream W(512, 512);
W.init(-256.0, 255.0, -256.0);
W << CGAL_BLACK;
for( vector<Triangle>::iterator i = triang.begin(); i != triang.end(); i++)
for( typename vector<Triangle>::iterator i = triang.begin(); i != triang.end(); i++)
W << *i;
/* Wait for mouse click in window. */

View File

@ -52,7 +52,7 @@ int main()
CGAL_Window_stream W(512, 512);
W.init(-256.0, 255.0, -256.0);
W << CGAL_BLACK;
for( vector<Point>::iterator i = points.begin(); i != points.end(); i++)
for( typename vector<Point>::iterator i = points.begin(); i != points.end(); i++)
W << *i;
/* Wait for mouse click in window. */

View File

@ -47,7 +47,7 @@ int main()
CGAL_Window_stream W(524, 524);
W.init(-262.0, 261.0, -262.0);
W << CGAL_BLACK;
for( vector<Point>::iterator i = points.begin(); i != points.end(); i++)
for( typename vector<Point>::iterator i = points.begin(); i != points.end(); i++)
W << *i;
/* Wait for mouse click in window. */