- Ray_[23] and Line_[23] new code.

This commit is contained in:
Sylvain Pion 2001-01-23 10:42:28 +00:00
parent 2dbae0468e
commit a17f238d3d
1 changed files with 8 additions and 1 deletions

View File

@ -55,9 +55,16 @@ int main()
gv << CGAL::Bbox_2(10, 10, 30, 30);
gv << CGAL::Bbox_3(10, 10, 10, 30, 30, 30);
gv << CGAL::RED;
gv << K::Ray_2(K::Point_2(205,205), K::Point_2(500,500));
gv << K::Ray_3(K::Point_3(250,250,250), K::Point_3(500,500,500));
gv << K::Line_2(K::Point_2(195,195), K::Point_2(500,500));
gv << K::Line_3(K::Point_3(150,150,150), K::Point_3(500,500,500));
gv.look_recenter();
sleep(10);
std::cout << "Stopping in 1 minute" << std::endl;
sleep(60);
return 0;
}