// How to enter a point in Geomview. // // Sylvain Pion, 2000. #include #include #ifndef CGAL_USE_GEOMVIEW int main() { std::cout << "Geomview doesn't work on Windows, so..." << std::endl; return 0; } #else #include typedef CGAL::Cartesian K; int main() { CGAL::Geomview_stream gv(CGAL::Bbox_3(0, 0, 0, 350, 350, 350)); std::cout << "Please enter a point, by right-clicking on the pickplane" << std::endl; K::Point_3 p; gv >> p; std::cout << "Here are the coordinates of the selected point : " << p << std::endl; return 0; } #endif