From 3cf37a2878dcb28ba2a77594e99410ac5b5cf73f Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Sun, 26 Feb 2017 21:35:43 +0000 Subject: [PATCH] pp --- Geo/Geo.cpp | 2 +- Geo/GeoInterpolation.cpp | 2 +- Geo/GeoInterpolation.h | 2 +- Geo/gmshFace.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Geo/Geo.cpp b/Geo/Geo.cpp index 05c35cb2db..d1092a031a 100644 --- a/Geo/Geo.cpp +++ b/Geo/Geo.cpp @@ -3450,7 +3450,7 @@ bool ProjectPointOnSurface(Surface *s, Vertex &p, double uv[2]) // Split line -static Curve *_create_splitted_curve(Curve *c,List_T *nodes) +static Curve *_create_splitted_curve(Curve *c, List_T *nodes) { int beg, end; List_Read(nodes, 0, &beg); diff --git a/Geo/GeoInterpolation.cpp b/Geo/GeoInterpolation.cpp index d206da4997..16f88b4893 100644 --- a/Geo/GeoInterpolation.cpp +++ b/Geo/GeoInterpolation.cpp @@ -651,7 +651,7 @@ static void TransfiniteSph(Vertex S, Vertex center, Vertex *T) T->Pos.Z = center.Pos.Z + r * dirz; } -bool iSRuledSurfaceASphere(Surface *s, SPoint3 ¢er, double &radius) +bool IsRuledSurfaceASphere(Surface *s, SPoint3 ¢er, double &radius) { if(s->Typ != MSH_SURF_REGL && s->Typ != MSH_SURF_TRIC) return false; if(!List_Nbr(s->Generatrices)) return false; diff --git a/Geo/GeoInterpolation.h b/Geo/GeoInterpolation.h index c9cb7b5136..f628afa586 100644 --- a/Geo/GeoInterpolation.h +++ b/Geo/GeoInterpolation.h @@ -13,7 +13,7 @@ class Curve; class Vertex; class gmshSurface; -bool iSRuledSurfaceASphere(Surface *s, SPoint3 ¢er, double &radius); +bool IsRuledSurfaceASphere(Surface *s, SPoint3 ¢er, double &radius); Vertex InterpolateCurve(Curve *Curve, double u, int derivee); Vertex InterpolateSurface(Surface *s, double u, double v, int derivee, int u_v); SPoint2 InterpolateCubicSpline(Vertex * v[4], double t, double mat[4][4], diff --git a/Geo/gmshFace.cpp b/Geo/gmshFace.cpp index 334e7816e6..dec8d8a89d 100644 --- a/Geo/gmshFace.cpp +++ b/Geo/gmshFace.cpp @@ -84,7 +84,7 @@ void gmshFace::resetNativePtr(Surface *face) // the bounding vertices) if(s->Typ == MSH_SURF_PLAN) computeMeanPlane(); - isSphere = iSRuledSurfaceASphere(s, center, radius); + isSphere = IsRuledSurfaceASphere(s, center, radius); } double gmshFace::getMetricEigenvalue(const SPoint2 &pt) -- GitLab