Improve error message

This commit is contained in:
Christophe Bourcier 2023-01-31 16:10:37 +01:00
parent d13f9a5399
commit 38ab7c3864

View File

@ -2431,7 +2431,14 @@ bool _ViscousBuilder::findFacesWithLayers(const bool onlyWith)
break; break;
} }
default: default:
return error("Not yet supported case", _sdVec[i]._index); std::ostringstream msg;
msg << "Not yet supported case: vertex bounded by ";
msg << facesWOL.size();
msg << " faces without layer at coordinates (";
TopoDS_Vertex v = TopoDS::Vertex(vertex);
gp_Pnt p = BRep_Tool::Pnt(v);
msg << p.X() << ", " << p.Y() << ", " << p.Z() << ")";
return error(msg.str().c_str(), _sdVec[i]._index);
} }
} }
} }