Home
last modified time | relevance | path

Searched refs:fg_vertex_descriptor (Results 1 – 9 of 9) sorted by relevance

/dports/math/cgal/CGAL-5.3/demo/Polyhedron/
H A DScene_polyhedron_selection_item.h380 std::vector<fg_vertex_descriptor> all_vertices;
383 for(fg_vertex_descriptor vb : vertices(*polyhedron()))
417 fg_vertex_descriptor s = all_vertices[id];
418 fg_vertex_descriptor t = all_vertices[id2];
435 select_all<fg_vertex_descriptor>(); break;
467 clear<fg_vertex_descriptor>(); break;
487 clear<fg_vertex_descriptor>();
840 void selected(const std::set<fg_vertex_descriptor>& m)
847 void selected_HL(const std::set<fg_vertex_descriptor>& m);
925 void selectPath(fg_vertex_descriptor vh);
[all …]
H A DScene_polyhedron_selection_item.cpp80 typedef boost::unordered_set<fg_vertex_descriptor
88 fg_vertex_descriptor vertex;
121 QList<fg_vertex_descriptor> constrained_vertices;
130 fg_vertex_descriptor to_split_vh;
676 Q_FOREACH(fg_vertex_descriptor vh, temp_select) in inverse_selection()
842 fg_vertex_descriptor vh = *selection.begin(); in treat_selection()
880 static fg_vertex_descriptor s; in treat_selection()
1506 fg_vertex_descriptor destination_vd;
1531 typedef boost::unordered_map<fg_vertex_descriptor, fg_vertex_descriptor> Pred_umap; in computeAndDisplayPath()
1538 QList<fg_vertex_descriptor>::iterator it; in computeAndDisplayPath()
[all …]
/dports/math/cgal/CGAL-5.3/demo/Polyhedron/Plugins/PMP/
H A DScene_facegraph_item_k_ring_selection.h28 typedef boost::graph_traits<FaceGraph>::vertex_descriptor fg_vertex_descriptor; typedef
167 process_selection( static_cast<fg_vertex_descriptor>(h) ); in vertex_has_been_selected()
246 for(fg_vertex_descriptor v : CGAL::vertices_around_face(halfedge(f, poly), poly)) in lasso_selection()
363 std::set<fg_vertex_descriptor> v_sel; in lasso_selection()
366 for(fg_vertex_descriptor v : CGAL::vertices_around_face(halfedge(f, poly), poly)) in lasso_selection()
427 void selected(const std::set<fg_vertex_descriptor>&);
430 void selected_HL(const std::set<fg_vertex_descriptor>&);
484 std::set<fg_vertex_descriptor>
485 extract_k_ring(fg_vertex_descriptor clicked, unsigned int k) in extract_k_ring()
487 std::set<fg_vertex_descriptor> selection; in extract_k_ring()
[all …]
H A DHole_filling_plugin.cpp71 typedef boost::graph_traits<Face_graph>::vertex_descriptor fg_vertex_descriptor; typedef
793 QVector<fg_vertex_descriptor> vertices; in on_Fill_from_selection_button()
852 fg_vertex_descriptor shared_vertex; in on_Fill_from_selection_button()
853 fg_vertex_descriptor other_vertex; in on_Fill_from_selection_button()
878 Q_FOREACH(fg_vertex_descriptor vh, vertices) in on_Fill_from_selection_button()
892 std::vector<fg_vertex_descriptor> face; in on_Fill_from_selection_button()
899 …new_fh = CGAL::Euler::add_face(std::vector<fg_vertex_descriptor>(face.rbegin(), face.rend()), *pol… in on_Fill_from_selection_button()
H A DSelection_plugin.cpp423 fg_vertex_descriptor esource = source(ed, *selection_item->polyhedron()); in on_Regularize_button_clicked()
424 fg_vertex_descriptor etarget = target(ed, *selection_item->polyhedron()); in on_Regularize_button_clicked()
660 std::map<fg_vertex_descriptor, Edge_graph::vertex_descriptor> p2vd; in on_validateButton_clicked()
661 std::map<fg_vertex_descriptor, Edge_graph::vertex_descriptor>::iterator it_find; in on_validateButton_clicked()
669 fg_vertex_descriptor source = target(opposite(halfedge(*begin,*poly),*poly),*poly); in on_validateButton_clicked()
679 fg_vertex_descriptor targ = target(halfedge(*begin,*poly),*poly); in on_validateButton_clicked()
/dports/math/cgal/CGAL-5.3/include/CGAL/boost/graph/
H A Dselection.h79 typedef typename GT::vertex_descriptor fg_vertex_descriptor; typedef
172 fg_vertex_descriptor esource = source(ed, pmap.rg->fg); in get()
173 fg_vertex_descriptor etarget = target(ed, pmap.rg->fg); in get()
229 fg_vertex_descriptor esource = source(ed, fg); in length()
230 fg_vertex_descriptor etarget = target(ed, fg); in length()
583 typedef typename GT::vertex_descriptor fg_vertex_descriptor; in regularize_face_selection_borders() typedef
600 fg_vertex_descriptor esource = source(ed, fg); in regularize_face_selection_borders()
601 fg_vertex_descriptor etarget = target(ed, fg); in regularize_face_selection_borders()
656 fg_vertex_descriptor chosen; in regularize_face_selection_borders()
660 for (fg_vertex_descriptor vd : vertices(fg)) in regularize_face_selection_borders()
/dports/math/cgal/CGAL-5.3/demo/Polyhedron/Plugins/Surface_mesh_deformation/
H A DEdit_polyhedron_plugin.cpp538 QVector<Scene_polyhedron_selection_item::fg_vertex_descriptor> sel_to_import; in importSelection()
539 …Q_FOREACH(Scene_polyhedron_selection_item::fg_vertex_descriptor vh, selection_item->selected_verti… in importSelection()
543 …Scene_polyhedron_selection_item::fg_vertex_descriptor vh = source(halfedge(ed, *selection_item->po… in importSelection()
564 Q_FOREACH(Scene_polyhedron_selection_item::fg_vertex_descriptor vh, sel_to_import) in importSelection()
H A DScene_edit_polyhedron_item.cpp247 connect(&d->k_ring_selector, SIGNAL(selected(const std::set<fg_vertex_descriptor>&)), this, in Scene_edit_polyhedron_item()
248 SLOT(selected(const std::set<fg_vertex_descriptor>&))); in Scene_edit_polyhedron_item()
1327 void Scene_edit_polyhedron_item::selected(const std::set<fg_vertex_descriptor>& m) in selected()
1330 for(std::set<fg_vertex_descriptor>::const_iterator it = m.begin(); it != m.end(); ++it) in selected()
H A DScene_edit_polyhedron_item.h315 void selected(const std::set<fg_vertex_descriptor>&);