MCPcopy Create free account
hub / github.com/IfcOpenShell/IfcOpenShell / remove_edge

Method remove_edge

src/svgfill/src/graph_2d.h:414–418  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

412 }
413
414 void remove_edge(const Point_2& u, const Point_2& v) {
415 adjacency_list[u].erase(v);
416 adjacency_list[v].erase(u);
417 assert_symmetric();
418 }
419
420 void insert(const Point_2& u, const Point_2& v) {
421 adjacency_list[u].insert(v);

Callers 4

edge_slideFunction · 0.80
arrange_cgal_polygonsFunction · 0.80
mergeMethod · 0.80

Calls 1

eraseMethod · 0.45

Tested by

no test coverage detected