diff --git a/src/Adaptor3d/Adaptor3d_CurveOnSurface.cxx b/src/Adaptor3d/Adaptor3d_CurveOnSurface.cxx index 787af3564e..9bf807c227 100644 --- a/src/Adaptor3d/Adaptor3d_CurveOnSurface.cxx +++ b/src/Adaptor3d/Adaptor3d_CurveOnSurface.cxx @@ -99,10 +99,10 @@ static gp_Parab to3d(const gp_Pln& Pl, const gp_Parab2d& P) return gp_Parab(to3d(Pl,P.Axis()),P.Focal()); } -static gp_Vec SetLinearForm(const gp_Vec2d DW, const gp_Vec2d D2W,const gp_Vec2d D3W, - const gp_Vec D1U, const gp_Vec D1V, const gp_Vec D2U, - const gp_Vec D2V, const gp_Vec D2UV, const gp_Vec D3U, - const gp_Vec D3V, const gp_Vec D3UUV,const gp_Vec D3UVV) +static gp_Vec SetLinearForm(const gp_Vec2d& DW, const gp_Vec2d& D2W, const gp_Vec2d& D3W, + const gp_Vec& D1U, const gp_Vec& D1V, const gp_Vec& D2U, + const gp_Vec& D2V, const gp_Vec& D2UV, const gp_Vec& D3U, + const gp_Vec& D3V, const gp_Vec& D3UUV,const gp_Vec& D3UVV) {gp_Vec V31, V32, V33, V34,V3 ; V31.SetLinearForm(DW.X(),D1U, D2W.X()*DW.X(),D2U, diff --git a/src/Approx/Approx_SameParameter.cxx b/src/Approx/Approx_SameParameter.cxx index 3a13047f2c..a4e467e611 100644 --- a/src/Approx/Approx_SameParameter.cxx +++ b/src/Approx/Approx_SameParameter.cxx @@ -108,7 +108,7 @@ void Approx_SameParameter_Evaluator::Evaluate (Standard_Integer *,/*Dimension*/ //purpose : //======================================================================= static void ProjectPointOnCurve(const Standard_Real InitValue, - const gp_Pnt APoint, + const gp_Pnt& APoint, const Standard_Real Tolerance, const Standard_Integer NumIteration, const Adaptor3d_Curve& Curve, diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller.hxx b/src/BOPAlgo/BOPAlgo_PaveFiller.hxx index 431accaa9e..cd2275d994 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller.hxx +++ b/src/BOPAlgo/BOPAlgo_PaveFiller.hxx @@ -525,7 +525,7 @@ protected: Standard_EXPORT void UpdateEdgeTolerance(const Standard_Integer nE, const Standard_Real aTolNew); - Standard_EXPORT void RemovePaveBlocks(const TColStd_MapOfInteger theEdges); + Standard_EXPORT void RemovePaveBlocks(const TColStd_MapOfInteger& theEdges); Standard_EXPORT void CorrectToleranceOfSE(); diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx b/src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx index a1c7d2b0e5..a4e454665d 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx +++ b/src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx @@ -3394,7 +3394,7 @@ void BOPAlgo_PaveFiller::UpdatePaveBlocks //function : RemovePaveBlocks //purpose : //======================================================================= -void BOPAlgo_PaveFiller::RemovePaveBlocks(const TColStd_MapOfInteger theEdges) +void BOPAlgo_PaveFiller::RemovePaveBlocks(const TColStd_MapOfInteger& theEdges) { // Remove all pave blocks referring to input edges: // diff --git a/src/BRepLib/BRepLib_FindSurface.cxx b/src/BRepLib/BRepLib_FindSurface.cxx index 5b3cbf38b2..15ae27de86 100644 --- a/src/BRepLib/BRepLib_FindSurface.cxx +++ b/src/BRepLib/BRepLib_FindSurface.cxx @@ -205,10 +205,10 @@ static void fillParams (const TColStd_Array1OfReal& theKnots, theParams.Append (theParMax); } -static void fillPoints (const BRepAdaptor_Curve& theCurve, - const NCollection_Vector theParams, - TColgp_SequenceOfPnt& thePoints, - TColStd_SequenceOfReal& theWeights) +static void fillPoints (const BRepAdaptor_Curve& theCurve, + const NCollection_Vector& theParams, + TColgp_SequenceOfPnt& thePoints, + TColStd_SequenceOfReal& theWeights) { Standard_Real aDistPrev = 0., aDistNext; gp_Pnt aPPrev (theCurve.Value (theParams (0))), aPNext; diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakeRevolution.cxx b/src/BRepPrimAPI/BRepPrimAPI_MakeRevolution.cxx index 5c5efecb45..b22ae54c39 100644 --- a/src/BRepPrimAPI/BRepPrimAPI_MakeRevolution.cxx +++ b/src/BRepPrimAPI/BRepPrimAPI_MakeRevolution.cxx @@ -29,7 +29,7 @@ //purpose : //======================================================================= static Handle(Geom2d_Curve) Project(const Handle(Geom_Curve)& M, - const gp_Ax3 Axis) + const gp_Ax3& Axis) { Handle(Geom2d_Curve) C; C = GeomProjLib::Curve2d(M,new Geom_Plane(Axis)); diff --git a/src/BinTools/BinTools_ShapeSetBase.cxx b/src/BinTools/BinTools_ShapeSetBase.cxx index dcc9b4268d..0486760768 100644 --- a/src/BinTools/BinTools_ShapeSetBase.cxx +++ b/src/BinTools/BinTools_ShapeSetBase.cxx @@ -28,7 +28,7 @@ const Standard_CString BinTools_ShapeSetBase::THE_ASCII_VERSIONS[BinTools_Format //function : operator << (gp_Pnt) //purpose : //======================================================================= -Standard_OStream& operator << (Standard_OStream& OS, const gp_Pnt P) +Standard_OStream& operator << (Standard_OStream& OS, const gp_Pnt& P) { BinTools::PutReal (OS, P.X()); BinTools::PutReal (OS, P.Y()); diff --git a/src/BinTools/BinTools_ShapeSetBase.hxx b/src/BinTools/BinTools_ShapeSetBase.hxx index 551218a9b1..9782195bba 100644 --- a/src/BinTools/BinTools_ShapeSetBase.hxx +++ b/src/BinTools/BinTools_ShapeSetBase.hxx @@ -27,7 +27,7 @@ class TopoDS_Shape; class gp_Pnt; //! Writes to the stream a gp_Pnt data -Standard_OStream& operator << (Standard_OStream& OS, const gp_Pnt P); +Standard_OStream& operator << (Standard_OStream& OS, const gp_Pnt& P); //! Computes a hash code for the given value of the uint64_t type, in range [1, theUpperBound] inline Standard_Integer HashCode (const uint64_t theValue, const Standard_Integer theUpperBound) diff --git a/src/Bnd/Bnd_Box.cxx b/src/Bnd/Bnd_Box.cxx index fb0c1495fa..eba846a5f5 100644 --- a/src/Bnd/Bnd_Box.cxx +++ b/src/Bnd/Bnd_Box.cxx @@ -46,7 +46,7 @@ Bnd_Box::Bnd_Box() //function : Bnd_Box //purpose : //======================================================================= -Bnd_Box::Bnd_Box (const gp_Pnt theMin, const gp_Pnt theMax) +Bnd_Box::Bnd_Box (const gp_Pnt& theMin, const gp_Pnt& theMax) : Gap (0.0) { SetVoid(); diff --git a/src/Bnd/Bnd_Box.hxx b/src/Bnd/Bnd_Box.hxx index 9080207e0f..f9390cb87f 100644 --- a/src/Bnd/Bnd_Box.hxx +++ b/src/Bnd/Bnd_Box.hxx @@ -71,7 +71,7 @@ public: //! Creates a bounding box, it contains: //! - minimum/maximum point of bounding box, //! The constructed box is qualified Void. Its gap is null. - Standard_EXPORT Bnd_Box (const gp_Pnt theMin, const gp_Pnt theMax); + Standard_EXPORT Bnd_Box (const gp_Pnt& theMin, const gp_Pnt& theMax); //! Sets this bounding box so that it covers the whole of 3D space. //! It is infinitely long in all directions. diff --git a/src/BndLib/BndLib_AddSurface.cxx b/src/BndLib/BndLib_AddSurface.cxx index fa219167fb..b1ba162eac 100644 --- a/src/BndLib/BndLib_AddSurface.cxx +++ b/src/BndLib/BndLib_AddSurface.cxx @@ -798,7 +798,7 @@ public: private: SurfMaxMinCoord & operator = (const SurfMaxMinCoord & theOther); - Standard_Boolean CheckInputData(const math_Vector theParams) + Standard_Boolean CheckInputData(const math_Vector& theParams) { if (theParams(1) < myUMin || theParams(1) > myUMax || diff --git a/src/ChFi3d/ChFi3d_Builder_C1.cxx b/src/ChFi3d/ChFi3d_Builder_C1.cxx index d4e48a4c90..93f20646ac 100644 --- a/src/ChFi3d/ChFi3d_Builder_C1.cxx +++ b/src/ChFi3d/ChFi3d_Builder_C1.cxx @@ -1502,12 +1502,12 @@ static Standard_Boolean containE(const TopoDS_Face & F1, // from , check points between and //======================================================================= -static Standard_Boolean IsShrink(const Geom2dAdaptor_Curve PC, - const Standard_Real Pf, - const Standard_Real Pl, - const Standard_Real Param, - const Standard_Boolean isU, - const Standard_Real tol) +static Standard_Boolean IsShrink(const Geom2dAdaptor_Curve& PC, + const Standard_Real Pf, + const Standard_Real Pl, + const Standard_Real Param, + const Standard_Boolean isU, + const Standard_Real tol) { switch (PC.GetType()) { case GeomAbs_Line: { diff --git a/src/ChFi3d/ChFi3d_ChBuilder_C3.cxx b/src/ChFi3d/ChFi3d_ChBuilder_C3.cxx index 8167011f30..9bd677069d 100644 --- a/src/ChFi3d/ChFi3d_ChBuilder_C3.cxx +++ b/src/ChFi3d/ChFi3d_ChBuilder_C3.cxx @@ -60,10 +60,10 @@ // la distance de PntD par rapport au plan passant par les trois // points PntA, PntB, PntC //======================================================================= -static Standard_Boolean CoPlanar(const gp_Pnt PntA, - const gp_Pnt PntB, - const gp_Pnt PntC, - const gp_Pnt PntD) +static Standard_Boolean CoPlanar(const gp_Pnt& PntA, + const gp_Pnt& PntB, + const gp_Pnt& PntC, + const gp_Pnt& PntD) { gp_Vec vecAB(PntA, PntB); gp_Vec vecAC(PntA, PntC); diff --git a/src/GeomTools/GeomTools_CurveSet.cxx b/src/GeomTools/GeomTools_CurveSet.cxx index a6e8a3e8da..76f053cfb9 100644 --- a/src/GeomTools/GeomTools_CurveSet.cxx +++ b/src/GeomTools/GeomTools_CurveSet.cxx @@ -114,9 +114,9 @@ Standard_Integer GeomTools_CurveSet::Index //purpose : //======================================================================= -static void Print(const gp_Pnt P, - Standard_OStream& OS, - const Standard_Boolean compact) +static void Print(const gp_Pnt& P, + Standard_OStream& OS, + const Standard_Boolean compact) { OS << P.X(); if (!compact) OS << ","; @@ -133,9 +133,9 @@ static void Print(const gp_Pnt P, //purpose : //======================================================================= -static void Print(const gp_Dir D, - Standard_OStream& OS, - const Standard_Boolean compact) +static void Print(const gp_Dir& D, + Standard_OStream& OS, + const Standard_Boolean compact) { OS << D.X(); if (!compact) OS << ","; diff --git a/src/GeomTools/GeomTools_SurfaceSet.cxx b/src/GeomTools/GeomTools_SurfaceSet.cxx index 2dcc11cbd1..707cfde1d9 100644 --- a/src/GeomTools/GeomTools_SurfaceSet.cxx +++ b/src/GeomTools/GeomTools_SurfaceSet.cxx @@ -118,9 +118,9 @@ Standard_Integer GeomTools_SurfaceSet::Index //purpose : //======================================================================= -static void Print(const gp_Pnt P, - Standard_OStream& OS, - const Standard_Boolean compact) +static void Print(const gp_Pnt& P, + Standard_OStream& OS, + const Standard_Boolean compact) { OS << P.X(); if (!compact) OS << ","; @@ -137,9 +137,9 @@ static void Print(const gp_Pnt P, //purpose : //======================================================================= -static void Print(const gp_Dir D, - Standard_OStream& OS, - const Standard_Boolean compact) +static void Print(const gp_Dir& D, + Standard_OStream& OS, + const Standard_Boolean compact) { OS << D.X(); if (!compact) OS << ","; diff --git a/src/IntAna2d/IntAna2d_Outils.cxx b/src/IntAna2d/IntAna2d_Outils.cxx index 8216bc3f3b..d5b960ad24 100644 --- a/src/IntAna2d/IntAna2d_Outils.cxx +++ b/src/IntAna2d/IntAna2d_Outils.cxx @@ -267,7 +267,10 @@ void Traitement_Points_Confondus(Standard_Integer& nb_pts, } //----------------------------------------------------------------------------- -void Coord_Ancien_Repere(Standard_Real& x1,Standard_Real& y1,const gp_Ax2d Dir1) { +void Coord_Ancien_Repere(Standard_Real& x1, + Standard_Real& y1, + const gp_Ax2d& Dir1) +{ Standard_Real t11,t12,t21,t22,t13,t23; Standard_Real x0,y0; diff --git a/src/IntAna2d/IntAna2d_Outils.hxx b/src/IntAna2d/IntAna2d_Outils.hxx index 43ef3cef2d..6d11e2c0a7 100644 --- a/src/IntAna2d/IntAna2d_Outils.hxx +++ b/src/IntAna2d/IntAna2d_Outils.hxx @@ -55,8 +55,9 @@ Standard_Boolean Points_Confondus(const Standard_Real xa,const Standard_Real ya, void Traitement_Points_Confondus(Standard_Integer& nb_pts ,IntAna2d_IntPoint *pts); -void Coord_Ancien_Repere(Standard_Real& Ancien_X,Standard_Real& Ancien_Y - ,const gp_Ax2d Axe_Nouveau_Repere); +void Coord_Ancien_Repere(Standard_Real& Ancien_X, + Standard_Real& Ancien_Y, + const gp_Ax2d& Axe_Nouveau_Repere); #endif diff --git a/src/IntCurve/IntCurve_IntConicConic.cxx b/src/IntCurve/IntCurve_IntConicConic.cxx index 0d7ac3a759..97796b007d 100644 --- a/src/IntCurve/IntCurve_IntConicConic.cxx +++ b/src/IntCurve/IntCurve_IntConicConic.cxx @@ -56,13 +56,13 @@ static inline Standard_Boolean BOUNDED_DOMAIN(const IntRes2d_Domain& domain) return (domain.HasFirstPoint() && domain.HasLastPoint()); } -static Standard_Boolean SET_BOUNDED_DOMAIN(const IntRes2d_Domain domain, - Standard_Real& binf, - Standard_Real& tolinf, - gp_Pnt2d& Pntinf, - Standard_Real& bsup, - Standard_Real& tolsup, - gp_Pnt2d& Pntsup) +static Standard_Boolean SET_BOUNDED_DOMAIN(const IntRes2d_Domain& domain, + Standard_Real& binf, + Standard_Real& tolinf, + gp_Pnt2d& Pntinf, + Standard_Real& bsup, + Standard_Real& tolsup, + gp_Pnt2d& Pntsup) { if(domain.HasFirstPoint()) { if(binf //#include -Standard_EXPORT Standard_Boolean FUN_projPonL(const gp_Pnt& P,const TopOpeBRep_LineInter L,const TopOpeBRep_FacesFiller& FF, +Standard_EXPORT Standard_Boolean FUN_projPonL(const gp_Pnt& P,const TopOpeBRep_LineInter& L,const TopOpeBRep_FacesFiller& FF, Standard_Real& paramL) { Standard_Boolean paramLdef = Standard_False; diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_GridSS.cxx b/src/TopOpeBRepBuild/TopOpeBRepBuild_GridSS.cxx index 5442620774..315117e45c 100644 --- a/src/TopOpeBRepBuild/TopOpeBRepBuild_GridSS.cxx +++ b/src/TopOpeBRepBuild/TopOpeBRepBuild_GridSS.cxx @@ -99,7 +99,7 @@ Standard_EXPORT void TopOpeBRepDS_SetThePCurve //(const TopoDS_Face& fF,const TopoDS_Edge& E,Standard_Real& splitpar); //--------------------------------------------- -static Standard_Integer FUN_getG(const gp_Pnt P,const TopOpeBRepDS_ListOfInterference& LI,const Handle(TopOpeBRepDS_HDataStructure) HDS,Standard_Integer& iEinterf) +static Standard_Integer FUN_getG(const gp_Pnt& P,const TopOpeBRepDS_ListOfInterference& LI,const Handle(TopOpeBRepDS_HDataStructure) HDS,Standard_Integer& iEinterf) //--------------------------------------------- { TopOpeBRepDS_ListIteratorOfListOfInterference ILI(LI); diff --git a/src/ViewerTest/ViewerTest_ObjectCommands.cxx b/src/ViewerTest/ViewerTest_ObjectCommands.cxx index 63c000d5a9..d2f9763539 100644 --- a/src/ViewerTest/ViewerTest_ObjectCommands.cxx +++ b/src/ViewerTest/ViewerTest_ObjectCommands.cxx @@ -1965,7 +1965,7 @@ public: // CASCADE RTTI DEFINE_STANDARD_RTTI_INLINE(FilledCircle, AIS_InteractiveObject); - FilledCircle (gp_Pnt theCenter, Standard_Real theRadius); + FilledCircle (const gp_Pnt& theCenter, Standard_Real theRadius); FilledCircle (Handle(Geom_Circle) theCircle); private: @@ -1987,7 +1987,7 @@ protected: }; -FilledCircle::FilledCircle(gp_Pnt theCenter, Standard_Real theRadius) +FilledCircle::FilledCircle(const gp_Pnt& theCenter, Standard_Real theRadius) { myCircle = CreateCircle(theCenter, theRadius); myFilledStatus = Standard_True; diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionObject.hxx b/src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionObject.hxx index e9783f7b05..cccfdc3bc4 100644 --- a/src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionObject.hxx +++ b/src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionObject.hxx @@ -222,13 +222,13 @@ public: //! Set connection point (for dimesional_size), //! Set connection point for the first shape (for dimensional_location). - void SetPoint(const gp_Pnt thePnt) { + void SetPoint(const gp_Pnt& thePnt) { myPnt1 = thePnt; myHasPoint1 = Standard_True; } // Set connection point for the second shape (for dimensional_location only). - void SetPoint2(const gp_Pnt thePnt) { + void SetPoint2(const gp_Pnt& thePnt) { myPnt2 = thePnt; myHasPoint2 = Standard_True; } diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.cxx b/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.cxx index 14d7207cf3..c405b343d7 100644 --- a/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.cxx +++ b/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.cxx @@ -254,7 +254,7 @@ Standard_Real XCAFDimTolObjects_GeomToleranceObject::GetMaxValueModifier() cons //purpose : //======================================================================= -void XCAFDimTolObjects_GeomToleranceObject::SetAxis (const gp_Ax2 theAxis) +void XCAFDimTolObjects_GeomToleranceObject::SetAxis(const gp_Ax2& theAxis) { myAxis = theAxis; myHasAxis = Standard_True; diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.hxx b/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.hxx index 8bb6e1effa..15e746518c 100644 --- a/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.hxx +++ b/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.hxx @@ -105,7 +105,7 @@ public: //! Returns the maximal upper tolerance. Standard_EXPORT Standard_Real GetMaxValueModifier() const; - Standard_EXPORT void SetAxis (const gp_Ax2 theAxis); + Standard_EXPORT void SetAxis (const gp_Ax2& theAxis); Standard_EXPORT gp_Ax2 GetAxis() const; diff --git a/src/XCAFDoc/XCAFDoc_ClippingPlaneTool.cxx b/src/XCAFDoc/XCAFDoc_ClippingPlaneTool.cxx index 7d009481de..e0a23ed09f 100644 --- a/src/XCAFDoc/XCAFDoc_ClippingPlaneTool.cxx +++ b/src/XCAFDoc/XCAFDoc_ClippingPlaneTool.cxx @@ -100,7 +100,7 @@ Standard_Boolean XCAFDoc_ClippingPlaneTool::GetClippingPlane(const TDF_Label& th //purpose : //======================================================================= -TDF_Label XCAFDoc_ClippingPlaneTool::AddClippingPlane(const gp_Pln thePlane, const TCollection_ExtendedString theName) const +TDF_Label XCAFDoc_ClippingPlaneTool::AddClippingPlane(const gp_Pln& thePlane, const TCollection_ExtendedString theName) const { TDF_Label aLabel; TDF_LabelSequence aClippingPlanes; @@ -137,7 +137,7 @@ TDF_Label XCAFDoc_ClippingPlaneTool::AddClippingPlane(const gp_Pln thePlane, con //purpose : //======================================================================= -TDF_Label XCAFDoc_ClippingPlaneTool::AddClippingPlane(const gp_Pln thePlane, const Handle(TCollection_HAsciiString)& theName) const +TDF_Label XCAFDoc_ClippingPlaneTool::AddClippingPlane(const gp_Pln& thePlane, const Handle(TCollection_HAsciiString)& theName) const { TCollection_ExtendedString anExtName = TCollection_ExtendedString(theName->String()); return AddClippingPlane(thePlane, anExtName); @@ -149,7 +149,7 @@ TDF_Label XCAFDoc_ClippingPlaneTool::AddClippingPlane(const gp_Pln thePlane, con //purpose : //======================================================================= -TDF_Label XCAFDoc_ClippingPlaneTool::AddClippingPlane(const gp_Pln thePlane, const TCollection_ExtendedString theName, const Standard_Boolean theCapping) const +TDF_Label XCAFDoc_ClippingPlaneTool::AddClippingPlane(const gp_Pln& thePlane, const TCollection_ExtendedString theName, const Standard_Boolean theCapping) const { TDF_Label aLabel = AddClippingPlane(thePlane, theName); Standard_Integer aCappingVal = (theCapping) ? 1 : 0; @@ -163,7 +163,7 @@ TDF_Label XCAFDoc_ClippingPlaneTool::AddClippingPlane(const gp_Pln thePlane, con //purpose : //======================================================================= -TDF_Label XCAFDoc_ClippingPlaneTool::AddClippingPlane(const gp_Pln thePlane, const Handle(TCollection_HAsciiString)& theName, const Standard_Boolean theCapping) const +TDF_Label XCAFDoc_ClippingPlaneTool::AddClippingPlane(const gp_Pln& thePlane, const Handle(TCollection_HAsciiString)& theName, const Standard_Boolean theCapping) const { TCollection_ExtendedString anExtName = TCollection_ExtendedString(theName->String()); return AddClippingPlane(thePlane, anExtName, theCapping); @@ -206,7 +206,7 @@ void XCAFDoc_ClippingPlaneTool::GetClippingPlanes(TDF_LabelSequence& theLabels) //======================================================================= void XCAFDoc_ClippingPlaneTool::UpdateClippingPlane(const TDF_Label& theLabel, - const gp_Pln thePlane, const TCollection_ExtendedString theName) const + const gp_Pln& thePlane, const TCollection_ExtendedString theName) const { if (theLabel.Father() != Label()) return; diff --git a/src/XCAFDoc/XCAFDoc_ClippingPlaneTool.hxx b/src/XCAFDoc/XCAFDoc_ClippingPlaneTool.hxx index c4d19dfe88..980fec6346 100644 --- a/src/XCAFDoc/XCAFDoc_ClippingPlaneTool.hxx +++ b/src/XCAFDoc/XCAFDoc_ClippingPlaneTool.hxx @@ -60,22 +60,22 @@ public: //! Adds a clipping plane definition to a ClippingPlane table and returns //! its label (returns existing label if the same clipping plane //! is already defined) - Standard_EXPORT TDF_Label AddClippingPlane(const gp_Pln thePlane, const TCollection_ExtendedString theName, const Standard_Boolean theCapping) const; + Standard_EXPORT TDF_Label AddClippingPlane(const gp_Pln& thePlane, const TCollection_ExtendedString theName, const Standard_Boolean theCapping) const; //! Adds a clipping plane definition to a ClippingPlane table and returns //! its label (returns existing label if the same clipping plane //! is already defined) - Standard_EXPORT TDF_Label AddClippingPlane(const gp_Pln thePlane, const Handle(TCollection_HAsciiString)& theName, const Standard_Boolean theCapping) const; + Standard_EXPORT TDF_Label AddClippingPlane(const gp_Pln& thePlane, const Handle(TCollection_HAsciiString)& theName, const Standard_Boolean theCapping) const; //! Adds a clipping plane definition to a ClippingPlane table and returns //! its label (returns existing label if the same clipping plane //! is already defined) - Standard_EXPORT TDF_Label AddClippingPlane(const gp_Pln thePlane, const TCollection_ExtendedString theName) const; + Standard_EXPORT TDF_Label AddClippingPlane(const gp_Pln& thePlane, const TCollection_ExtendedString theName) const; //! Adds a clipping plane definition to a ClippingPlane table and returns //! its label (returns existing label if the same clipping plane //! is already defined) - Standard_EXPORT TDF_Label AddClippingPlane(const gp_Pln thePlane, const Handle(TCollection_HAsciiString)& theName) const; + Standard_EXPORT TDF_Label AddClippingPlane(const gp_Pln& thePlane, const Handle(TCollection_HAsciiString)& theName) const; //! Removes clipping plane from the ClippingPlane table //! Return false and do nothing if clipping plane is referenced in at least one View @@ -87,7 +87,7 @@ public: //! Sets new value of plane and name to the given clipping plane label //! or do nothing, if the given label is not a clipping plane label - Standard_EXPORT void UpdateClippingPlane(const TDF_Label& theLabelL, const gp_Pln thePlane, const TCollection_ExtendedString theName) const; + Standard_EXPORT void UpdateClippingPlane(const TDF_Label& theLabelL, const gp_Pln& thePlane, const TCollection_ExtendedString theName) const; //! Set new value of capping for given clipping plane label Standard_EXPORT void SetCapping(const TDF_Label& theClippingPlaneL, const Standard_Boolean theCapping); diff --git a/src/XCAFView/XCAFView_Object.hxx b/src/XCAFView/XCAFView_Object.hxx index 5085da4f87..5a94e91884 100644 --- a/src/XCAFView/XCAFView_Object.hxx +++ b/src/XCAFView/XCAFView_Object.hxx @@ -60,7 +60,7 @@ public: return myType; } - void SetProjectionPoint(gp_Pnt thePoint) + void SetProjectionPoint(const gp_Pnt& thePoint) { myProjectionPoint = thePoint; } @@ -70,7 +70,7 @@ public: return myProjectionPoint; } - void SetViewDirection(gp_Dir theDirection) + void SetViewDirection(const gp_Dir& theDirection) { myViewDirection = theDirection; } @@ -80,7 +80,7 @@ public: return myViewDirection; } - void SetUpDirection(gp_Dir theDirection) + void SetUpDirection(const gp_Dir& theDirection) { myUpDirection = theDirection; } @@ -200,7 +200,7 @@ public: return myGDTPoints->Length(); } - void SetGDTPoint(const Standard_Integer theIndex, const gp_Pnt thePoint) + void SetGDTPoint(const Standard_Integer theIndex, const gp_Pnt& thePoint) { if (myGDTPoints.IsNull()) return; diff --git a/src/XDEDRAW/XDEDRAW_Props.cxx b/src/XDEDRAW/XDEDRAW_Props.cxx index f8d674d141..3e87e312b1 100644 --- a/src/XDEDRAW/XDEDRAW_Props.cxx +++ b/src/XDEDRAW/XDEDRAW_Props.cxx @@ -101,7 +101,10 @@ static double TetraVol(gp_Pnt RefPoint, gp_Pnt Som1, gp_Pnt Som2, gp_Pnt Som3) //function : TetraCen //purpose : auxiliary //======================================================================= -static gp_XYZ TetraCen(gp_Pnt RefPoint, gp_Pnt Som1, gp_Pnt Som2, gp_Pnt Som3) +static gp_XYZ TetraCen(const gp_Pnt& RefPoint, + const gp_Pnt& Som1, + const gp_Pnt& Som2, + const gp_Pnt& Som3) { gp_XYZ curCentr, plnPnt; plnPnt = ( Som1.XYZ() + Som2.XYZ() + Som3.XYZ() )/3;