diff --git a/Geo/MVertex.cpp b/Geo/MVertex.cpp index 33d0d15950a44896e77aa15f8ab277ac69d5a3c9..2d7d83cb590835919e2a0b2e5a8141977fc283da 100644 --- a/Geo/MVertex.cpp +++ b/Geo/MVertex.cpp @@ -344,8 +344,7 @@ bool reparamMeshVertexOnFace(MVertex *v, GFace *gf, SPoint2 ¶m) if(v->onWhat() == gf && v->getParameter(0, UU) && v->getParameter(1, VV)) param = SPoint2(UU, VV); else - return false; - // param = gf->parFromPoint(SPoint3(v->x(), v->y(), v->z())); + param = gf->parFromPoint(SPoint3(v->x(), v->y(), v->z())); } return true; }