Merge pull request #4923 from grassofsky/master

fix edge_to_faces key in Collect_face_bbox_per_edge_bbox
This commit is contained in:
Sebastien Loriot 2020-10-20 13:36:07 +02:00 committed by GitHub
commit aea7a5f19a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ public:
halfedge_descriptor fh = face_box.info();
halfedge_descriptor eh = edge_box.info();
edge_to_faces[eh].insert(face(fh, tm_faces));
edge_to_faces[edge(eh,tm_edges)].insert(face(fh, tm_faces));
}
void operator()( const Box* face_box_ptr, const Box* edge_box_ptr) const