MCPcopy Create free account
hub / github.com/cutdigital/mcut / remove_elements

Method remove_elements

source/hmesh.cpp:1073–1090  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1071}
1072
1073void hmesh_t::remove_elements()
1074{
1075 for (face_array_iterator_t i = faces_begin(); i != faces_end(); ++i) {
1076 remove_face(*i);
1077 }
1078
1079 for (edge_array_iterator_t i = edges_begin(); i != edges_end(); ++i) {
1080 remove_edge(*i);
1081 }
1082
1083 for (halfedge_array_iterator_t i = halfedges_begin(); i != halfedges_end(); ++i) {
1084 remove_halfedge(*i);
1085 }
1086
1087 for (vertex_array_iterator_t i = vertices_begin(); i != vertices_end(); ++i) {
1088 remove_vertex(*i);
1089 }
1090}
1091
1092void hmesh_t::reset()
1093{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected