Revert "Check face graph validity and not just halfedge validity in post-reading BGL IO"

This reverts commit 226f84f2e6.

This is too strong and prevents reading some broken meshes that we still
want to be able to read.

Note that even is_valid_halfedge_graph() would return false
This commit is contained in:
Mael Rouxel-Labbé 2022-10-07 10:34:32 +02:00
parent 13e34985eb
commit 5545eee950
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ public:
put(fcm, f, face_colors[i]);
}
return is_valid_face_graph(g);
return is_valid(g);
}
protected: