Skip to content
Snippets Groups Projects
Commit 183f2766 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

do parFromPoint only if it's reaaaalllly necessary + removed slow dynamic_cast

parent 30647613
No related branches found
No related tags found
No related merge requests found
...@@ -357,20 +357,15 @@ bool reparamMeshVertexOnEdge(const MVertex *v, const GEdge *ge, double &param) ...@@ -357,20 +357,15 @@ bool reparamMeshVertexOnEdge(const MVertex *v, const GEdge *ge, double &param)
{ {
param = 1.e6; param = 1.e6;
Range<double> bounds = ge->parBounds(0); Range<double> bounds = ge->parBounds(0);
if(ge->getBeginVertex() && ge->getBeginVertex()->mesh_vertices[0] == v) if(ge->getBeginVertex() && ge->getBeginVertex()->mesh_vertices[0] == v)
param = bounds.low(); param = bounds.low();
else if(ge->getEndVertex() && ge->getEndVertex()->mesh_vertices[0] == v) else if(ge->getEndVertex() && ge->getEndVertex()->mesh_vertices[0] == v)
param = bounds.high(); param = bounds.high();
else else
v->getParameter(0, param);
if(param == 1.e6)
param = ge->parFromPoint(SPoint3(v->x(), v->y(), v->z())); param = ge->parFromPoint(SPoint3(v->x(), v->y(), v->z()));
if (v->onWhat() == ge) {
const MEdgeVertex* ve = dynamic_cast<const MEdgeVertex*>(v);
if (!ve) param = ge->parFromPoint(SPoint3(v->x(), v->y(), v->z()));
else v->getParameter(0, param);
}
else
param = ge->parFromPoint(SPoint3(v->x(), v->y(), v->z()));
if(param < 1.e6) return true; if(param < 1.e6) return true;
return false; return false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment