You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. load polyobj.ply
2. run Carve's mesh simplification:
void SimplifyMeshbyCarve(carvePoly *obj,double edgelengthmin)
{
carve::mesh::MeshSimplifier simplifier;
simplifier.removeFins(obj);
//simplifier.removeLowVolumeManifolds(obj, 1.0);
// p->transform(carve::geom::quantize<10,3>());
double min_delta_v=edgelengthmin*edgelengthmin*edgelengthmin;
simplifier.simplify(obj, 1e-2, min_delta_v, M_PI/180.0, edgelengthmin);
// std::cerr << "n_flips: " << simplifier.improveMesh_conservative(p) << std::endl;
simplifier.removeFins(obj);
//simplifier.removeLowVolumeManifolds(obj, 1.0);
}
3. Carve crashed when set edgelengthmin = 1.4901161193847656e-006
What is the expected output? What do you see instead?
The Carve should not crash. Could anyone help me to take a look at the problem?
What version of the product are you using? On what operating system?
Latest Carve. Windows 7 64bit + VS2012
Please provide any additional information below.
See attachment.
Original issue reported on code.google.com by tanglaoy...@gmail.com on 3 Sep 2014 at 9:13
Original issue reported on code.google.com by
tanglaoy...@gmail.com
on 3 Sep 2014 at 9:13Attachments:
The text was updated successfully, but these errors were encountered: