diff --git a/Geo/gmshFace.cpp b/Geo/gmshFace.cpp index bb87d53ebd0a7051f5a6020a2f5e092de292aa9e..5ad0f936b06ff4f1c24ef82f05ec76dff2293cba 100644 --- a/Geo/gmshFace.cpp +++ b/Geo/gmshFace.cpp @@ -161,7 +161,7 @@ int gmshFace::containsParam(const SPoint2 &pt) const SPoint2 gmshFace::parFromPoint(const SPoint3 &qp) const { double u,v; - if (s->Typ == MSH_SURF_PLAN){ + if(s->Typ == MSH_SURF_PLAN){ double x,y,z,VX[3],VY[3]; getMeanPlaneData(VX, VY, x, y, z); double vec[3] = {qp.x()-x,qp.y()-y,qp.z()-z};