Skip to content

Commit

Permalink
not skipping the spherical face
Browse files Browse the repository at this point in the history
  • Loading branch information
denizdiktas committed Aug 1, 2023
1 parent 16863d7 commit 1db9651
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Arrangement_on_surface_2/demo/earth/Aos.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1095,9 +1095,9 @@ void Aos::save_arr(Kml::Placemarks& placemarks, const std::string& file_name)
int total_num_half_edges = 0;
for (auto fh = arr.faces_begin(); fh != arr.faces_end(); ++fh)
{
// skip the spherical face
if (fh->number_of_outer_ccbs() == 0)
continue;
//// skip the spherical face
//if (fh->number_of_outer_ccbs() == 0)
// continue;

// json object for the current face
json js_face;
Expand Down

0 comments on commit 1db9651

Please sign in to comment.