|
| |
Extracts object c from the stream is. Returns is. |
#include <CGAL/basic.h> #include <iostream> #include <fstream> #include <CGAL/Cartesian.h> #include <CGAL/Segment_2.h> typedef CGAL::Point_2< CGAL::Cartesian<double> > Point; typedef CGAL::Segment_2< CGAL::Cartesian<double> > Segment; int main() { Point p, q; Segment s; CGAL::set_ascii_mode(std::cin); std::cin >> p >> q; std::ifstream f("data.txt"); CGAL::set_binary_mode(f); f >> s >> p; return 1; }