Home
last modified time | relevance | path

Searched refs:boundary_edges (Results 1 – 18 of 18) sorted by relevance

/dports/math/cgal/CGAL-5.3/include/CGAL/Meshes/
H A DTriangulation_mesher_level_traits_2.h52 Edges boundary_edges; member
59 << zone.boundary_edges.size() << " edges." << std::endl; in insert_impl()
65 zone.boundary_edges.begin(), in insert_impl()
66 zone.boundary_edges.end(), in insert_impl()
/dports/cad/gmsh/gmsh-4.9.2-source/contrib/Revoropt/include/Revoropt/Mesh/
H A Dnormals_def.hpp379 std::vector<unsigned int> boundary_edges ; in robust_edge_normals() local
386 boundary_edges.push_back(edge) ; in robust_edge_normals()
401 const unsigned int besize = boundary_edges.size() ; in robust_edge_normals()
404 for(unsigned int e_index = 0; e_index < boundary_edges.size(); ++e_index) { in robust_edge_normals()
405 const unsigned int edge = boundary_edges[e_index] ; in robust_edge_normals()
418 boundary_edges.data(), in robust_edge_normals()
426 for(unsigned int e_index = 0; e_index < boundary_edges.size(); ++e_index) { in robust_edge_normals()
427 const unsigned int edge = boundary_edges[e_index] ; in robust_edge_normals()
/dports/math/cgal/CGAL-5.3/include/CGAL/Mesh_2/
H A DDo_not_refine_edges.h73 for(typename Zone::Edges_iterator eit = z.boundary_edges.begin(); in test_point_conflict_from_superior_impl()
74 eit != z.boundary_edges.end(); ++eit) in test_point_conflict_from_superior_impl()
H A DRefine_edges.h414 OutputItEdges edges_out(zone.boundary_edges); in conflicts_zone_impl()
468 zone.boundary_edges.begin(), in insert_impl()
469 zone.boundary_edges.end(), in insert_impl()
525 for(typename Zone::Edges_iterator eit = zone.boundary_edges.begin(); in test_point_conflict_from_superior_impl()
526 eit != zone.boundary_edges.end(); ++eit) in test_point_conflict_from_superior_impl()
H A DRefine_edges_with_clusters.h169 for(typename Zone::Edges_iterator eit = z.boundary_edges.begin(); in test_point_conflict_from_superior_impl()
170 eit != z.boundary_edges.end(); ++eit) in test_point_conflict_from_superior_impl()
H A DRefine_faces.h139 std::back_inserter(zone.boundary_edges), in conflicts_zone_impl()
145 << "edges: " << zone.boundary_edges.size() << std::endl; in conflicts_zone_impl()
/dports/graphics/blender/blender-2.91.0/release/scripts/addons/mesh_inset/
H A Dmodel.py303 boundary_edges = set()
309 boundary_edges.add(e)
319 while boundary_edges:
320 e = boundary_edges.pop()
347 if nexte not in boundary_edges:
350 boundary_edges.remove(nexte)
/dports/cad/pdnmesh/pdnmesh-0.2.2/src/
H A Dsubdivide.c380 int fixed_points, boundary_edges; in subdivide_this_triangle() local
409 boundary_edges=0; in subdivide_this_triangle()
411 boundary_edges++; in subdivide_this_triangle()
414 boundary_edges++; in subdivide_this_triangle()
417 boundary_edges++; in subdivide_this_triangle()
800 int fixed_points, boundary_edges; in refine_this_triangle() local
829 boundary_edges=0; in refine_this_triangle()
831 boundary_edges++; in refine_this_triangle()
834 boundary_edges++; in refine_this_triangle()
837 boundary_edges++; in refine_this_triangle()
[all …]
/dports/math/moab/fathomteam-moab-7bde9dfb84a8/src/moab/
H A DSkinner.hpp127 EntityHandle boundary_edges,
137 Range &boundary_edges,
/dports/graphics/blender/blender-2.91.0/source/blender/blenlib/intern/
H A Dvoronoi_2d.c806 ListBase boundary_edges = {NULL, NULL}; in BLI_voronoi_triangulate() local
808 voronoi_clampEdges(edges, width, height, &boundary_edges); in BLI_voronoi_triangulate()
809 voronoi_createBoundaryEdges(&boundary_edges, width, height); in BLI_voronoi_triangulate()
818 edge = boundary_edges.first; in BLI_voronoi_triangulate()
820 VoronoiEdge *test_edge = boundary_edges.first; in BLI_voronoi_triangulate()
864 BLI_freelistN(&boundary_edges); in BLI_voronoi_triangulate()
/dports/devel/py-trimesh/trimesh-3.5.25/trimesh/
H A Drepair.py252 boundary_edges = mesh.edges[boundary_groups]
257 np.column_stack((boundary_edges,
/dports/math/moab/fathomteam-moab-7bde9dfb84a8/src/
H A DSkinner.cpp671 EntityHandle boundary_edges, in classify_2d_boundary() argument
683 result = thisMB->clear_meshset(&boundary_edges, 1);MB_CHK_ERR(result); in classify_2d_boundary()
684 result = thisMB->add_entities(boundary_edges, bedges); MB_CHK_ERR(result); in classify_2d_boundary()
700 Range &boundary_edges, in classify_2d_boundary() argument
709 boundary_edges.clear(); in classify_2d_boundary()
859 boundary_edges.insert(handle); in classify_2d_boundary()
877 boundary_edges.insert(*edge_iter); in classify_2d_boundary()
/dports/math/cgal/CGAL-5.3/demo/Polyhedron/Plugins/PMP/
H A DScene_facegraph_item_k_ring_selection.h265 std::vector<fg_halfedge_descriptor> boundary_edges; in lasso_selection() local
266 …GAL::Polygon_mesh_processing::border_halfedges(face_sel, poly, std::back_inserter(boundary_edges)); in lasso_selection()
271 for(fg_halfedge_descriptor h : boundary_edges) in lasso_selection()
H A DSelection_plugin.cpp843 std::vector<Scene_polyhedron_selection_item::fg_halfedge_descriptor> boundary_edges; in on_validateButton_clicked() local
844 …ssing::border_halfedges(selection_item->selected_facets, poly, std::back_inserter(boundary_edges)); in on_validateButton_clicked()
845 for(Scene_polyhedron_selection_item::fg_halfedge_descriptor h : boundary_edges) in on_validateButton_clicked()
/dports/math/py-matplotlib/matplotlib-3.4.3/src/tri/
H A D_tri.cpp245 BoundaryEdges boundary_edges; in calculate_boundaries() local
250 boundary_edges.insert(TriEdge(tri, edge)); in calculate_boundaries()
259 while (!boundary_edges.empty()) { in calculate_boundaries()
261 BoundaryEdges::iterator it = boundary_edges.begin(); in calculate_boundaries()
269 boundary_edges.erase(it); in calculate_boundaries()
289 it = boundary_edges.find(TriEdge(tri, edge)); in calculate_boundaries()
/dports/math/py-matplotlib2/matplotlib-2.2.4/lib/matplotlib/tri/
H A D_tri.cpp245 BoundaryEdges boundary_edges; in calculate_boundaries() local
250 boundary_edges.insert(TriEdge(tri, edge)); in calculate_boundaries()
259 while (!boundary_edges.empty()) { in calculate_boundaries()
261 BoundaryEdges::iterator it = boundary_edges.begin(); in calculate_boundaries()
269 boundary_edges.erase(it); in calculate_boundaries()
289 it = boundary_edges.find(TriEdge(tri, edge)); in calculate_boundaries()
/dports/cad/gmsh/gmsh-4.9.2-source/Geo/
H A DGeomMeshMatcher.cpp232 std::vector<GEdge *> boundary_edges = f1->edges(); in matchFaces() local
234 for(auto boundary_edge = boundary_edges.begin(); in matchFaces()
235 boundary_edge != boundary_edges.end(); boundary_edge++) { in matchFaces()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/text/src/
H A Derfilter.cpp305 vector<int> boundary_edges[256]; in er_tree_extract() local
357 boundary_edges[neighbour_level].push_back(0); in er_tree_extract()
369 boundary_edges[current_level].push_back(current_edge + 1); in er_tree_extract()
544 current_edge = boundary_edges[threshold_level].back(); in er_tree_extract()
545 boundary_edges[threshold_level].erase(boundary_edges[threshold_level].end()-1); in er_tree_extract()