diff --git a/Geo/GEdge.cpp b/Geo/GEdge.cpp index 902f242c0fe9f35a3b9b376288f90601d003d8ba..75925212dbf484b19afc8e4e72fb3a8b12d1103f 100644 --- a/Geo/GEdge.cpp +++ b/Geo/GEdge.cpp @@ -134,7 +134,7 @@ SVector3 GEdge::secondDer(double par) const return 500 * (x2 - x1); } -SPoint2 GEdge::reparamOnFace(GFace *face, double epar,int dir) const +SPoint2 GEdge::reparamOnFace(const GFace *face, double epar,int dir) const { // reparmaterize the point onto the given face. const GPoint p3 = point(epar); diff --git a/Geo/GEdge.h b/Geo/GEdge.h index 1f1074ee01407cb42d05f38c0ed1fb1a69bd60a3..0ac4cfc76952ea89cab2d94699cd9d520170e7ae 100644 --- a/Geo/GEdge.h +++ b/Geo/GEdge.h @@ -48,7 +48,7 @@ class GEdge : public GEntity { virtual void setVisibility(char val, bool recursive=false); // true if the edge is a seam for the given face. - virtual bool isSeam(GFace *face) const { return false; } + virtual bool isSeam(const GFace *face) const { return false; } // get the bounding box virtual SBoundingBox3d bounds() const; @@ -73,7 +73,7 @@ class GEdge : public GEntity { virtual double curvature(double par) const; // reparmaterize the point onto the given face - virtual SPoint2 reparamOnFace(GFace *face, double epar, int dir) const; + virtual SPoint2 reparamOnFace(const GFace *face, double epar, int dir) const; // return the minimum number of segments used for meshing the edge virtual int minimumMeshSegments() const { return 1; } diff --git a/Geo/GVertex.cpp b/Geo/GVertex.cpp index df10ac83bc551386a3e81d900f1053bf085a6528..f7796d8249500961bc42a9a32a46a118456ec2f8 100644 --- a/Geo/GVertex.cpp +++ b/Geo/GVertex.cpp @@ -42,7 +42,7 @@ void GVertex::delEdge(GEdge *e) l_edges.erase(std::find(l_edges.begin(), l_edges.end(), e)); } -SPoint2 GVertex::reparamOnFace(GFace *gf, int) const +SPoint2 GVertex::reparamOnFace(const GFace *gf, int) const { return gf->parFromPoint(SPoint3(x(), y(), z())); } diff --git a/Geo/GVertex.h b/Geo/GVertex.h index 01b0fd8c85f834eaad06d095f3a783be19057d56..5d525c251c8fe73fe51e3c6bf909ff0f5fe21cbe 100644 --- a/Geo/GVertex.h +++ b/Geo/GVertex.h @@ -53,7 +53,7 @@ class GVertex : public GEntity virtual SBoundingBox3d bounds() const { return SBoundingBox3d(SPoint3(x(), y(), z())); } // reparmaterize the point onto the given face - virtual SPoint2 reparamOnFace(GFace *gf, int) const; + virtual SPoint2 reparamOnFace(const GFace *gf, int) const; // return a type-specific additional information string virtual std::string getAdditionalInfoString(); diff --git a/Geo/MVertex.cpp b/Geo/MVertex.cpp index 658dd4f8ced93cfe84a69a02f3a1e8ee9fcc573f..1a14720c41caea670e3323f5258d7fe9ca3fdc24 100644 --- a/Geo/MVertex.cpp +++ b/Geo/MVertex.cpp @@ -303,12 +303,12 @@ bool reparamMeshEdgeOnFace(MVertex *v1, MVertex *v2, GFace *gf, } } -bool reparamMeshVertexOnFace(MVertex *v, GFace *gf, SPoint2 ¶m) +bool reparamMeshVertexOnFace(const MVertex *v, const GFace *gf, SPoint2 ¶m) { if (gf->geomType() == GEntity::CompoundSurface && v->onWhat()->dim() < 2){ GFaceCompound *gfc = (GFaceCompound*) gf; - param = gfc->getCoordinates(v); + param = gfc->getCoordinates(const_cast<MVertex*>(v)); return true; } @@ -350,7 +350,7 @@ bool reparamMeshVertexOnFace(MVertex *v, GFace *gf, SPoint2 ¶m) return true; } -bool reparamMeshVertexOnEdge(MVertex *v, GEdge *ge, double ¶m) +bool reparamMeshVertexOnEdge(const MVertex *v, const GEdge *ge, double ¶m) { param = 1.e6; Range<double> bounds = ge->parBounds(0); diff --git a/Geo/MVertex.h b/Geo/MVertex.h index a75755c579200d4b2a74f803978dcd1c5a56352e..3f8ed426329b4f018299d2fa6dac6443dbd00428 100644 --- a/Geo/MVertex.h +++ b/Geo/MVertex.h @@ -156,7 +156,7 @@ class MFaceVertex : public MVertex{ bool reparamMeshEdgeOnFace(MVertex *v1, MVertex *v2, GFace *gf, SPoint2 ¶m1, SPoint2 ¶m2); -bool reparamMeshVertexOnFace(MVertex *v, GFace *gf, SPoint2 ¶m); -bool reparamMeshVertexOnEdge(MVertex *v, GEdge *ge, double ¶m); +bool reparamMeshVertexOnFace(const MVertex *v, const GFace *gf, SPoint2 ¶m); +bool reparamMeshVertexOnEdge(const MVertex *v, const GEdge *ge, double ¶m); #endif diff --git a/Geo/MZoneBoundary.cpp b/Geo/MZoneBoundary.cpp index 786bfad5124d96705351a26c34d9436bb0ebd479..d91ac615b4594da623dbd9e01d3e53178de31b16 100644 --- a/Geo/MZoneBoundary.cpp +++ b/Geo/MZoneBoundary.cpp @@ -216,6 +216,7 @@ int edge_normal { double par; + // Note: const_cast used to match MVertex.cpp interface if(!reparamMeshVertexOnEdge(vertex, gEdge, par)) return 1; const SVector3 tangent(gEdge->firstDer(par)); @@ -641,7 +642,7 @@ void updateBoVec<3, MFace> gFIt != useGFace.end(); ++gFIt) { SPoint2 par; - if(!reparamMeshVertexOnFace(vertex, (*gFIt), par)) + if(!reparamMeshVertexOnFace(vertex, *gFIt, par)) goto getNormalFromElements; // :P After all that! SVector3 boNormal = (*gFIt)->normal(par); diff --git a/Geo/OCCEdge.cpp b/Geo/OCCEdge.cpp index f5ac05e957cfe42dd778e32d16000cfcdf69b541..df47ffd73390c147a247a551f3df3c7310a66a23 100644 --- a/Geo/OCCEdge.cpp +++ b/Geo/OCCEdge.cpp @@ -64,7 +64,7 @@ void OCCEdge::setTrimmed (OCCFace *f) } } -SPoint2 OCCEdge::reparamOnFace(GFace *face, double epar, int dir) const +SPoint2 OCCEdge::reparamOnFace(const GFace *face, double epar, int dir) const { const TopoDS_Face *s = (TopoDS_Face*) face->getNativePtr(); double t0, t1; @@ -107,7 +107,7 @@ SPoint2 OCCEdge::reparamOnFace(GFace *face, double epar, int dir) const } // True if the edge is a seam for the given face -bool OCCEdge::isSeam(GFace *face) const +bool OCCEdge::isSeam(const GFace *face) const { if (face->geomType() == GEntity::CompoundSurface)return false; const TopoDS_Face *s = (TopoDS_Face*) face->getNativePtr(); diff --git a/Geo/OCCEdge.h b/Geo/OCCEdge.h index 725d49242c3d3867a4d925b4218f3bc5c38b3bf7..969d9046eff500f0ed3360985ccf497a6d246e5b 100644 --- a/Geo/OCCEdge.h +++ b/Geo/OCCEdge.h @@ -32,14 +32,14 @@ class OCCEdge : public GEdge { virtual GPoint point(double p) const; virtual SVector3 firstDer(double par) const; virtual double curvature (double par) const; - virtual SPoint2 reparamOnFace(GFace * face, double epar, int dir) const ; + virtual SPoint2 reparamOnFace(const GFace *face, double epar, int dir) const; ModelType getNativeType() const { return OpenCascadeModel; } void * getNativePtr() const { return (void*)&c; } virtual int minimumMeshSegments () const; virtual int minimumDrawSegments () const; bool is3D() const { return !curve.IsNull(); } void setTrimmed(OCCFace *); - bool isSeam(GFace *) const; + bool isSeam(const GFace *) const; }; #endif diff --git a/Geo/OCCVertex.cpp b/Geo/OCCVertex.cpp index 0a1e4bf60be23fb57aec75835fea22766e0d898f..0ba1a03e672588d28f8fe5dc63c3c3047e073928 100644 --- a/Geo/OCCVertex.cpp +++ b/Geo/OCCVertex.cpp @@ -65,7 +65,7 @@ double OCCVertex::max_curvature_of_surfaces() const return max_curvature; } -SPoint2 OCCVertex::reparamOnFace(GFace *gf, int dir) const +SPoint2 OCCVertex::reparamOnFace(const GFace *gf, int dir) const { std::list<GEdge*>::const_iterator it = l_edges.begin(); while(it != l_edges.end()){ diff --git a/Geo/OCCVertex.h b/Geo/OCCVertex.h index bd2e9b89fce991f6eb94fbad7d8a6d6bfab4730f..1e3d304aff050d0b4b530d27d230f50effaf3118 100644 --- a/Geo/OCCVertex.h +++ b/Geo/OCCVertex.h @@ -28,7 +28,7 @@ class OCCVertex : public GVertex { virtual void setPosition(GPoint &p); ModelType getNativeType() const { return OpenCascadeModel; } void * getNativePtr() const { return (void*)&v; } - virtual SPoint2 reparamOnFace(GFace *gf, int) const; + virtual SPoint2 reparamOnFace(const GFace *gf, int) const; }; #endif diff --git a/Geo/gmshEdge.cpp b/Geo/gmshEdge.cpp index 4f4152544be6bb9c0ea3ce86d8f9f8db49972926..38a9156faf088c3bcde0545a8bfac5f7275c6870 100644 --- a/Geo/gmshEdge.cpp +++ b/Geo/gmshEdge.cpp @@ -89,7 +89,7 @@ int gmshEdge::minimumDrawSegments () const return CTX.geom.num_sub_edges * n; } -SPoint2 gmshEdge::reparamOnFace(GFace *face, double epar,int dir) const +SPoint2 gmshEdge::reparamOnFace(const GFace *face, double epar,int dir) const { Surface *s = (Surface*) face->getNativePtr(); diff --git a/Geo/gmshEdge.h b/Geo/gmshEdge.h index bf197c7d59e6bbaa68d9962b8ab8c3275b8c0092..0c3d2daf29031484f65cf7f7c72666ffd88af0f5 100644 --- a/Geo/gmshEdge.h +++ b/Geo/gmshEdge.h @@ -25,7 +25,7 @@ class gmshEdge : public GEdge { virtual int minimumMeshSegments() const; virtual int minimumDrawSegments() const; virtual void resetMeshAttributes(); - virtual SPoint2 reparamOnFace(GFace *face, double epar, int dir) const; + virtual SPoint2 reparamOnFace(const GFace *face, double epar, int dir) const; }; #endif diff --git a/Geo/gmshVertex.cpp b/Geo/gmshVertex.cpp index 70b21421782b94ee46308c4cde02e20d39a8a901..dfa94f0360cafd7b5c9f45735328df97f7225ed7 100644 --- a/Geo/gmshVertex.cpp +++ b/Geo/gmshVertex.cpp @@ -39,7 +39,7 @@ GEntity::GeomType gmshVertex::geomType() const return Point; } -SPoint2 gmshVertex::reparamOnFace(GFace *face, int dir) const +SPoint2 gmshVertex::reparamOnFace(const GFace *face, int dir) const { Surface *s = (Surface*)face->getNativePtr(); diff --git a/Geo/gmshVertex.h b/Geo/gmshVertex.h index e01a709e450449601e36b80f72c57809bbd3ed2a..afdd9b00c3fc13e07789c088fed6f206ab48e3a8 100644 --- a/Geo/gmshVertex.h +++ b/Geo/gmshVertex.h @@ -32,7 +32,7 @@ class gmshVertex : public GVertex { meshSize = l; v->lc = meshSize; } - virtual SPoint2 reparamOnFace(GFace *gf, int) const; + virtual SPoint2 reparamOnFace(const GFace *gf, int) const; }; #endif