@@ -11,7 +11,7 @@ typedef boost::shared_ptr<Ss> SsPtr;
1111typedef CGAL::Straight_skeleton_2<K>::Halfedge_const_handle Halfedge_const_handle;
1212typedef CGAL::Straight_skeleton_2<K>::Vertex_const_handle Vertex_const_handle;
1313
14- Edges pmp_create_interior_straight_skeleton (
14+ compas:: Edges pmp_create_interior_straight_skeleton (
1515 Eigen::Ref<const compas::RowMatrixXd> &V)
1616{
1717 Polygon_2 poly;
@@ -20,7 +20,7 @@ Edges pmp_create_interior_straight_skeleton(
2020 poly.push_back (Point (V (i, 0 ), V (i, 1 )));
2121 }
2222 SsPtr iss = CGAL::create_interior_straight_skeleton_2 (poly.vertices_begin (), poly.vertices_end ());
23- Edges edgelist;
23+ compas:: Edges edgelist;
2424 for (auto hit = iss->halfedges_begin (); hit != iss->halfedges_end (); ++hit){
2525 const Halfedge_const_handle h = hit;
2626 if (!h->is_bisector ()){
@@ -31,7 +31,7 @@ Edges pmp_create_interior_straight_skeleton(
3131 if (&*v1 < &*v2){
3232 std::vector<double > s_vec = {v1->point ().x (), v1->point ().y (), 0 };
3333 std::vector<double > t_vec = {v2->point ().x (), v2->point ().y (), 0 };
34- Edge edge = std::make_tuple (s_vec, t_vec);
34+ compas:: Edge edge = std::make_tuple (s_vec, t_vec);
3535 edgelist.push_back (edge);
3636 }
3737
0 commit comments