//表示几何图元typedef CGAL::Simple_cartesian<double>Kernel;//表示点typedef Kernel::Point_2 Point_2;//表示线typedef Kernel::Segment_2 Segment_2; Point_2 p(1, 1), q(10, 10); Segment_2 s(p, q); 2.计算点到线段的距离 Point_2 p(1,1), q(10,10);//两点距离CGAL::squared_distance...