1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0032953: Coding - add missing references where applicable

This commit is contained in:
aml 2022-04-29 15:21:24 +03:00 committed by smoskvin
parent 267738fc40
commit 034d1403b1
39 changed files with 134 additions and 115 deletions

View File

@ -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()); 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, 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& D1U, const gp_Vec& D1V, const gp_Vec& D2U,
const gp_Vec D2V, const gp_Vec D2UV, const gp_Vec D3U, const gp_Vec& D2V, const gp_Vec& D2UV, const gp_Vec& D3U,
const gp_Vec D3V, const gp_Vec D3UUV,const gp_Vec D3UVV) const gp_Vec& D3V, const gp_Vec& D3UUV,const gp_Vec& D3UVV)
{gp_Vec V31, V32, V33, V34,V3 ; {gp_Vec V31, V32, V33, V34,V3 ;
V31.SetLinearForm(DW.X(),D1U, V31.SetLinearForm(DW.X(),D1U,
D2W.X()*DW.X(),D2U, D2W.X()*DW.X(),D2U,

View File

@ -108,7 +108,7 @@ void Approx_SameParameter_Evaluator::Evaluate (Standard_Integer *,/*Dimension*/
//purpose : //purpose :
//======================================================================= //=======================================================================
static void ProjectPointOnCurve(const Standard_Real InitValue, static void ProjectPointOnCurve(const Standard_Real InitValue,
const gp_Pnt APoint, const gp_Pnt& APoint,
const Standard_Real Tolerance, const Standard_Real Tolerance,
const Standard_Integer NumIteration, const Standard_Integer NumIteration,
const Adaptor3d_Curve& Curve, const Adaptor3d_Curve& Curve,

View File

@ -525,7 +525,7 @@ protected:
Standard_EXPORT void UpdateEdgeTolerance(const Standard_Integer nE, Standard_EXPORT void UpdateEdgeTolerance(const Standard_Integer nE,
const Standard_Real aTolNew); const Standard_Real aTolNew);
Standard_EXPORT void RemovePaveBlocks(const TColStd_MapOfInteger theEdges); Standard_EXPORT void RemovePaveBlocks(const TColStd_MapOfInteger& theEdges);
Standard_EXPORT void CorrectToleranceOfSE(); Standard_EXPORT void CorrectToleranceOfSE();

View File

@ -3394,7 +3394,7 @@ void BOPAlgo_PaveFiller::UpdatePaveBlocks
//function : RemovePaveBlocks //function : RemovePaveBlocks
//purpose : //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: // Remove all pave blocks referring to input edges:
// //

View File

@ -205,10 +205,10 @@ static void fillParams (const TColStd_Array1OfReal& theKnots,
theParams.Append (theParMax); theParams.Append (theParMax);
} }
static void fillPoints (const BRepAdaptor_Curve& theCurve, static void fillPoints (const BRepAdaptor_Curve& theCurve,
const NCollection_Vector<Standard_Real> theParams, const NCollection_Vector<Standard_Real>& theParams,
TColgp_SequenceOfPnt& thePoints, TColgp_SequenceOfPnt& thePoints,
TColStd_SequenceOfReal& theWeights) TColStd_SequenceOfReal& theWeights)
{ {
Standard_Real aDistPrev = 0., aDistNext; Standard_Real aDistPrev = 0., aDistNext;
gp_Pnt aPPrev (theCurve.Value (theParams (0))), aPNext; gp_Pnt aPPrev (theCurve.Value (theParams (0))), aPNext;

View File

@ -29,7 +29,7 @@
//purpose : //purpose :
//======================================================================= //=======================================================================
static Handle(Geom2d_Curve) Project(const Handle(Geom_Curve)& M, static Handle(Geom2d_Curve) Project(const Handle(Geom_Curve)& M,
const gp_Ax3 Axis) const gp_Ax3& Axis)
{ {
Handle(Geom2d_Curve) C; Handle(Geom2d_Curve) C;
C = GeomProjLib::Curve2d(M,new Geom_Plane(Axis)); C = GeomProjLib::Curve2d(M,new Geom_Plane(Axis));

View File

@ -28,7 +28,7 @@ const Standard_CString BinTools_ShapeSetBase::THE_ASCII_VERSIONS[BinTools_Format
//function : operator << (gp_Pnt) //function : operator << (gp_Pnt)
//purpose : //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.X());
BinTools::PutReal (OS, P.Y()); BinTools::PutReal (OS, P.Y());

View File

@ -27,7 +27,7 @@ class TopoDS_Shape;
class gp_Pnt; class gp_Pnt;
//! Writes to the stream a gp_Pnt data //! 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] //! 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) inline Standard_Integer HashCode (const uint64_t theValue, const Standard_Integer theUpperBound)

View File

@ -46,7 +46,7 @@ Bnd_Box::Bnd_Box()
//function : Bnd_Box //function : Bnd_Box
//purpose : //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) : Gap (0.0)
{ {
SetVoid(); SetVoid();

View File

@ -71,7 +71,7 @@ public:
//! Creates a bounding box, it contains: //! Creates a bounding box, it contains:
//! - minimum/maximum point of bounding box, //! - minimum/maximum point of bounding box,
//! The constructed box is qualified Void. Its gap is null. //! 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. //! Sets this bounding box so that it covers the whole of 3D space.
//! It is infinitely long in all directions. //! It is infinitely long in all directions.

View File

@ -798,7 +798,7 @@ public:
private: private:
SurfMaxMinCoord & operator = (const SurfMaxMinCoord & theOther); SurfMaxMinCoord & operator = (const SurfMaxMinCoord & theOther);
Standard_Boolean CheckInputData(const math_Vector theParams) Standard_Boolean CheckInputData(const math_Vector& theParams)
{ {
if (theParams(1) < myUMin || if (theParams(1) < myUMin ||
theParams(1) > myUMax || theParams(1) > myUMax ||

View File

@ -1502,12 +1502,12 @@ static Standard_Boolean containE(const TopoDS_Face & F1,
// <tol> from <Param>, check points between <Pf> and <Pl> // <tol> from <Param>, check points between <Pf> and <Pl>
//======================================================================= //=======================================================================
static Standard_Boolean IsShrink(const Geom2dAdaptor_Curve PC, static Standard_Boolean IsShrink(const Geom2dAdaptor_Curve& PC,
const Standard_Real Pf, const Standard_Real Pf,
const Standard_Real Pl, const Standard_Real Pl,
const Standard_Real Param, const Standard_Real Param,
const Standard_Boolean isU, const Standard_Boolean isU,
const Standard_Real tol) const Standard_Real tol)
{ {
switch (PC.GetType()) { switch (PC.GetType()) {
case GeomAbs_Line: { case GeomAbs_Line: {

View File

@ -60,10 +60,10 @@
// la distance de PntD par rapport au plan passant par les trois // la distance de PntD par rapport au plan passant par les trois
// points PntA, PntB, PntC // points PntA, PntB, PntC
//======================================================================= //=======================================================================
static Standard_Boolean CoPlanar(const gp_Pnt PntA, static Standard_Boolean CoPlanar(const gp_Pnt& PntA,
const gp_Pnt PntB, const gp_Pnt& PntB,
const gp_Pnt PntC, const gp_Pnt& PntC,
const gp_Pnt PntD) const gp_Pnt& PntD)
{ {
gp_Vec vecAB(PntA, PntB); gp_Vec vecAB(PntA, PntB);
gp_Vec vecAC(PntA, PntC); gp_Vec vecAC(PntA, PntC);

View File

@ -114,9 +114,9 @@ Standard_Integer GeomTools_CurveSet::Index
//purpose : //purpose :
//======================================================================= //=======================================================================
static void Print(const gp_Pnt P, static void Print(const gp_Pnt& P,
Standard_OStream& OS, Standard_OStream& OS,
const Standard_Boolean compact) const Standard_Boolean compact)
{ {
OS << P.X(); OS << P.X();
if (!compact) OS << ","; if (!compact) OS << ",";
@ -133,9 +133,9 @@ static void Print(const gp_Pnt P,
//purpose : //purpose :
//======================================================================= //=======================================================================
static void Print(const gp_Dir D, static void Print(const gp_Dir& D,
Standard_OStream& OS, Standard_OStream& OS,
const Standard_Boolean compact) const Standard_Boolean compact)
{ {
OS << D.X(); OS << D.X();
if (!compact) OS << ","; if (!compact) OS << ",";

View File

@ -118,9 +118,9 @@ Standard_Integer GeomTools_SurfaceSet::Index
//purpose : //purpose :
//======================================================================= //=======================================================================
static void Print(const gp_Pnt P, static void Print(const gp_Pnt& P,
Standard_OStream& OS, Standard_OStream& OS,
const Standard_Boolean compact) const Standard_Boolean compact)
{ {
OS << P.X(); OS << P.X();
if (!compact) OS << ","; if (!compact) OS << ",";
@ -137,9 +137,9 @@ static void Print(const gp_Pnt P,
//purpose : //purpose :
//======================================================================= //=======================================================================
static void Print(const gp_Dir D, static void Print(const gp_Dir& D,
Standard_OStream& OS, Standard_OStream& OS,
const Standard_Boolean compact) const Standard_Boolean compact)
{ {
OS << D.X(); OS << D.X();
if (!compact) OS << ","; if (!compact) OS << ",";

View File

@ -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 t11,t12,t21,t22,t13,t23;
Standard_Real x0,y0; Standard_Real x0,y0;

View File

@ -55,8 +55,9 @@ Standard_Boolean Points_Confondus(const Standard_Real xa,const Standard_Real ya,
void Traitement_Points_Confondus(Standard_Integer& nb_pts void Traitement_Points_Confondus(Standard_Integer& nb_pts
,IntAna2d_IntPoint *pts); ,IntAna2d_IntPoint *pts);
void Coord_Ancien_Repere(Standard_Real& Ancien_X,Standard_Real& Ancien_Y void Coord_Ancien_Repere(Standard_Real& Ancien_X,
,const gp_Ax2d Axe_Nouveau_Repere); Standard_Real& Ancien_Y,
const gp_Ax2d& Axe_Nouveau_Repere);
#endif #endif

View File

@ -56,13 +56,13 @@ static inline Standard_Boolean BOUNDED_DOMAIN(const IntRes2d_Domain& domain)
return (domain.HasFirstPoint() && domain.HasLastPoint()); return (domain.HasFirstPoint() && domain.HasLastPoint());
} }
static Standard_Boolean SET_BOUNDED_DOMAIN(const IntRes2d_Domain domain, static Standard_Boolean SET_BOUNDED_DOMAIN(const IntRes2d_Domain& domain,
Standard_Real& binf, Standard_Real& binf,
Standard_Real& tolinf, Standard_Real& tolinf,
gp_Pnt2d& Pntinf, gp_Pnt2d& Pntinf,
Standard_Real& bsup, Standard_Real& bsup,
Standard_Real& tolsup, Standard_Real& tolsup,
gp_Pnt2d& Pntsup) gp_Pnt2d& Pntsup)
{ {
if(domain.HasFirstPoint()) { if(domain.HasFirstPoint()) {
if(binf<domain.FirstParameter()) { if(binf<domain.FirstParameter()) {

View File

@ -124,7 +124,8 @@ void ProjLib_Plane::Init(const gp_Pln& Pl)
// of myPlane. // of myPlane.
//======================================================================= //=======================================================================
static gp_Pnt2d EvalPnt2d( const gp_Pnt P, const gp_Pln& Pl) static gp_Pnt2d EvalPnt2d(const gp_Pnt& P,
const gp_Pln& Pl)
{ {
gp_Vec OP( Pl.Location(),P); gp_Vec OP( Pl.Location(),P);
return gp_Pnt2d( OP.Dot(gp_Vec(Pl.Position().XDirection())), return gp_Pnt2d( OP.Dot(gp_Vec(Pl.Position().XDirection())),

View File

@ -91,7 +91,8 @@ void ProjLib_Sphere::Init(const gp_Sphere& Sp)
// \ Z = sinV V = ASin( Z) // \ Z = sinV V = ASin( Z)
//======================================================================= //=======================================================================
static gp_Pnt2d EvalPnt2d( const gp_Vec P, const gp_Sphere& Sp) static gp_Pnt2d EvalPnt2d(const gp_Vec& P,
const gp_Sphere& Sp)
{ {
Standard_Real X = P.Dot(gp_Vec(Sp.Position().XDirection())); Standard_Real X = P.Dot(gp_Vec(Sp.Position().XDirection()));
Standard_Real Y = P.Dot(gp_Vec(Sp.Position().YDirection())); Standard_Real Y = P.Dot(gp_Vec(Sp.Position().YDirection()));

View File

@ -1165,8 +1165,8 @@ StepDimTol_GeometricToleranceModifier STEPCAFControl_GDTProperty::
//purpose : Note: this function does not add anything to model //purpose : Note: this function does not add anything to model
//======================================================================= //=======================================================================
Handle(StepDimTol_HArray1OfDatumReferenceModifier) STEPCAFControl_GDTProperty:: Handle(StepDimTol_HArray1OfDatumReferenceModifier) STEPCAFControl_GDTProperty::
GetDatumRefModifiers(const XCAFDimTolObjects_DatumModifiersSequence theModifiers, GetDatumRefModifiers(const XCAFDimTolObjects_DatumModifiersSequence& theModifiers,
const XCAFDimTolObjects_DatumModifWithValue theModifWithVal, const XCAFDimTolObjects_DatumModifWithValue& theModifWithVal,
const Standard_Real theValue, const Standard_Real theValue,
const StepBasic_Unit theUnit) const StepBasic_Unit theUnit)
{ {

View File

@ -100,8 +100,8 @@ public:
Standard_EXPORT static StepDimTol_GeometricToleranceModifier GetGeomToleranceModifier(const XCAFDimTolObjects_GeomToleranceModif theModifier); Standard_EXPORT static StepDimTol_GeometricToleranceModifier GetGeomToleranceModifier(const XCAFDimTolObjects_GeomToleranceModif theModifier);
Standard_EXPORT static Handle(StepDimTol_HArray1OfDatumReferenceModifier) GetDatumRefModifiers(const XCAFDimTolObjects_DatumModifiersSequence theModifiers, Standard_EXPORT static Handle(StepDimTol_HArray1OfDatumReferenceModifier) GetDatumRefModifiers(const XCAFDimTolObjects_DatumModifiersSequence& theModifiers,
const XCAFDimTolObjects_DatumModifWithValue theModifWithVal, const XCAFDimTolObjects_DatumModifWithValue& theModifWithVal,
const Standard_Real theValue, const Standard_Real theValue,
const StepBasic_Unit theUnit); const StepBasic_Unit theUnit);

View File

@ -2442,13 +2442,13 @@ Handle(StepRepr_ShapeAspect) STEPCAFControl_Writer::WriteShapeAspect (const Hand
//function : WritePresentation //function : WritePresentation
//purpose : auxiliary (write annotation plane and presentation) //purpose : auxiliary (write annotation plane and presentation)
//====================================================================== //======================================================================
void STEPCAFControl_Writer::WritePresentation(const Handle(XSControl_WorkSession) &WS, void STEPCAFControl_Writer::WritePresentation(const Handle(XSControl_WorkSession)& WS,
const TopoDS_Shape thePresentation, const TopoDS_Shape& thePresentation,
const Handle(TCollection_HAsciiString)& thePrsName, const Handle(TCollection_HAsciiString)& thePrsName,
const Standard_Boolean hasSemantic, const Standard_Boolean hasSemantic,
const Standard_Boolean hasPlane, const Standard_Boolean hasPlane,
const gp_Ax2 theAnnotationPlane, const gp_Ax2& theAnnotationPlane,
const gp_Pnt theTextPosition, const gp_Pnt& theTextPosition,
const Handle(Standard_Transient) theDimension) const Handle(Standard_Transient) theDimension)
{ {
if (thePresentation.IsNull()) if (thePresentation.IsNull())
@ -2528,9 +2528,9 @@ void STEPCAFControl_Writer::WritePresentation(const Handle(XSControl_WorkSession
// necessary entities and link them to already written datum // necessary entities and link them to already written datum
// in case of multiple features association) // in case of multiple features association)
//======================================================================= //=======================================================================
Handle(StepDimTol_Datum) STEPCAFControl_Writer::WriteDatumAP242(const Handle(XSControl_WorkSession) &WS, Handle(StepDimTol_Datum) STEPCAFControl_Writer::WriteDatumAP242(const Handle(XSControl_WorkSession)& WS,
const TDF_LabelSequence theShapeL, const TDF_LabelSequence& theShapeL,
const TDF_Label theDatumL, const TDF_Label& theDatumL,
const Standard_Boolean isFirstDTarget, const Standard_Boolean isFirstDTarget,
const Handle(StepDimTol_Datum) theWrittenDatum) const Handle(StepDimTol_Datum) theWrittenDatum)
{ {
@ -3252,8 +3252,8 @@ void STEPCAFControl_Writer::WriteToleranceZone (const Handle(XSControl_WorkSessi
// label and datum system) // label and datum system)
//====================================================================== //======================================================================
void STEPCAFControl_Writer::WriteGeomTolerance (const Handle(XSControl_WorkSession) &WS, void STEPCAFControl_Writer::WriteGeomTolerance (const Handle(XSControl_WorkSession) &WS,
const TDF_LabelSequence theShapeSeqL, const TDF_LabelSequence& theShapeSeqL,
const TDF_Label theGeomTolL, const TDF_Label& theGeomTolL,
const Handle(StepDimTol_HArray1OfDatumSystemOrReference)& theDatumSystem, const Handle(StepDimTol_HArray1OfDatumSystemOrReference)& theDatumSystem,
const Handle(StepRepr_RepresentationContext)& theRC) const Handle(StepRepr_RepresentationContext)& theRC)
{ {

View File

@ -224,19 +224,29 @@ private:
const TDF_Label theLabel, const TopoDS_Shape theShape, Handle(StepRepr_RepresentationContext)& theRC, const TDF_Label theLabel, const TopoDS_Shape theShape, Handle(StepRepr_RepresentationContext)& theRC,
Handle(StepAP242_GeometricItemSpecificUsage)& theGISU); Handle(StepAP242_GeometricItemSpecificUsage)& theGISU);
Standard_EXPORT void WritePresentation(const Handle(XSControl_WorkSession) &WS, const TopoDS_Shape thePresentation, Standard_EXPORT void WritePresentation(const Handle(XSControl_WorkSession)& WS,
const Handle(TCollection_HAsciiString)& thePrsName, const Standard_Boolean hasSemantic, const Standard_Boolean hasPlane, const TopoDS_Shape& thePresentation,
const gp_Ax2 theAnnotationPlane, const gp_Pnt theTextPosition, const Handle(Standard_Transient) theDimension); const Handle(TCollection_HAsciiString)& thePrsName,
const Standard_Boolean hasSemantic,
const Standard_Boolean hasPlane,
const gp_Ax2& theAnnotationPlane,
const gp_Pnt& theTextPosition,
const Handle(Standard_Transient) theDimension);
Standard_EXPORT Handle(StepDimTol_Datum) WriteDatumAP242(const Handle(XSControl_WorkSession) &WS, const TDF_LabelSequence theShapeL, Standard_EXPORT Handle(StepDimTol_Datum) WriteDatumAP242(const Handle(XSControl_WorkSession)& WS,
const TDF_Label theDatumL, const Standard_Boolean isFirstDTarget, const Handle(StepDimTol_Datum) theWrittenDatum); const TDF_LabelSequence& theShapeL,
const TDF_Label& theDatumL,
const Standard_Boolean isFirstDTarget,
const Handle(StepDimTol_Datum) theWrittenDatum);
Standard_EXPORT void WriteToleranceZone(const Handle(XSControl_WorkSession) &WS, const Handle(XCAFDimTolObjects_GeomToleranceObject)& theObject, Standard_EXPORT void WriteToleranceZone(const Handle(XSControl_WorkSession) &WS, const Handle(XCAFDimTolObjects_GeomToleranceObject)& theObject,
const Handle(StepDimTol_GeometricTolerance)& theEntity, const Handle(StepRepr_RepresentationContext)& theRC); const Handle(StepDimTol_GeometricTolerance)& theEntity, const Handle(StepRepr_RepresentationContext)& theRC);
Standard_EXPORT void WriteGeomTolerance(const Handle(XSControl_WorkSession) &WS, const TDF_LabelSequence theShapeSeqL, Standard_EXPORT void WriteGeomTolerance(const Handle(XSControl_WorkSession)& WS,
const TDF_Label theGeomTolL, const Handle(StepDimTol_HArray1OfDatumSystemOrReference)& theDatumSystem, const TDF_LabelSequence& theShapeSeqL,
const Handle(StepRepr_RepresentationContext)& theRC); const TDF_Label& theGeomTolL,
const Handle(StepDimTol_HArray1OfDatumSystemOrReference)& theDatumSystem,
const Handle(StepRepr_RepresentationContext)& theRC);
private: private:

View File

@ -56,7 +56,7 @@ class ShapeAnalysis_BoxBndTreeSelector
myStatus=ShapeExtend::EncodeStatus (ShapeExtend_OK); myStatus=ShapeExtend::EncodeStatus (ShapeExtend_OK);
} }
void DefinePnt (gp_Pnt theFPnt, gp_Pnt theLPnt) void DefinePnt (const gp_Pnt& theFPnt, const gp_Pnt& theLPnt)
{ myFPnt = theFPnt; { myFPnt = theFPnt;
myLPnt = theLPnt; myLPnt = theLPnt;
myStatus =ShapeExtend::EncodeStatus (ShapeExtend_OK); myStatus =ShapeExtend::EncodeStatus (ShapeExtend_OK);

View File

@ -795,7 +795,7 @@ Standard_Integer ShapeAnalysis_Curve::SelectForwardSeam(const Handle(Geom2d_Curv
// IsPlanar // IsPlanar
//============================================================================= //=============================================================================
static gp_XYZ GetAnyNormal ( gp_XYZ orig ) static gp_XYZ GetAnyNormal (const gp_XYZ& orig)
{ {
gp_XYZ Norm; gp_XYZ Norm;
if ( Abs ( orig.Z() ) < Precision::Confusion() ) if ( Abs ( orig.Z() ) < Precision::Confusion() )

View File

@ -1572,12 +1572,12 @@ Standard_Boolean ShapeAnalysis_Wire::CheckLacking (const Standard_Integer num,
//purpose : //purpose :
//======================================================================= //=======================================================================
static Standard_Real ProjectInside(const Adaptor3d_CurveOnSurface AD, static Standard_Real ProjectInside(const Adaptor3d_CurveOnSurface& AD,
const gp_Pnt pnt, const gp_Pnt& pnt,
const Standard_Real preci, const Standard_Real preci,
gp_Pnt& proj, gp_Pnt& proj,
Standard_Real& param, Standard_Real& param,
const Standard_Boolean adjustToEnds = Standard_True) const Standard_Boolean adjustToEnds = Standard_True)
{ {
ShapeAnalysis_Curve sac; ShapeAnalysis_Curve sac;
Standard_Real dist = sac.Project(AD,pnt,preci,proj,param,adjustToEnds); Standard_Real dist = sac.Project(AD,pnt,preci,proj,param,adjustToEnds);

View File

@ -299,8 +299,8 @@ TopoDS_Shape ShapeFix::RemoveSmallEdges (TopoDS_Shape& Shape,
//function : ReplaceVertex //function : ReplaceVertex
//purpose : auxiliary for FixVertexPosition //purpose : auxiliary for FixVertexPosition
//======================================================================= //=======================================================================
static TopoDS_Edge ReplaceVertex(const TopoDS_Edge& theEdge, static TopoDS_Edge ReplaceVertex(const TopoDS_Edge& theEdge,
const gp_Pnt theP, const gp_Pnt& theP,
const Standard_Boolean theFwd) const Standard_Boolean theFwd)
{ {
TopoDS_Vertex aNewVertex; TopoDS_Vertex aNewVertex;

View File

@ -1978,14 +1978,14 @@ static Standard_Integer IsShortSegment (const ShapeFix_WireSegment &seg,
//function : IsSamePatch //function : IsSamePatch
//purpose : auxiliary //purpose : auxiliary
//======================================================================= //=======================================================================
static Standard_Boolean IsSamePatch (const ShapeFix_WireSegment wire, static Standard_Boolean IsSamePatch (const ShapeFix_WireSegment& wire,
const Standard_Integer NU, const Standard_Integer NU,
const Standard_Integer NV, const Standard_Integer NV,
Standard_Integer &iumin, Standard_Integer& iumin,
Standard_Integer &iumax, Standard_Integer& iumax,
Standard_Integer &ivmin, Standard_Integer& ivmin,
Standard_Integer &ivmax, Standard_Integer& ivmax,
const Standard_Boolean extend=Standard_False) const Standard_Boolean extend=Standard_False)
{ {
// get patch indices for current segment // get patch indices for current segment
Standard_Integer jumin, jumax, jvmin, jvmax; Standard_Integer jumin, jumax, jvmin, jvmax;
@ -2333,8 +2333,8 @@ void ShapeFix_ComposeShell::CollectWires (ShapeFix_SequenceOfWireSegment &wires,
//purpose : //purpose :
//======================================================================= //=======================================================================
static gp_Pnt2d GetMiddlePoint (const ShapeFix_WireSegment wire, static gp_Pnt2d GetMiddlePoint (const ShapeFix_WireSegment& wire,
const TopoDS_Face face) const TopoDS_Face& face)
{ {
if(wire.IsVertex()) { if(wire.IsVertex()) {
TopoDS_Vertex aV = wire.GetVertex(); TopoDS_Vertex aV = wire.GetVertex();

View File

@ -49,7 +49,7 @@
#include <TopOpeBRepTool_SC.hxx> #include <TopOpeBRepTool_SC.hxx>
//#include <BRepAdaptor_Curve2d.hxx> //#include <BRepAdaptor_Curve2d.hxx>
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_Real& paramL)
{ {
Standard_Boolean paramLdef = Standard_False; Standard_Boolean paramLdef = Standard_False;

View File

@ -99,7 +99,7 @@ Standard_EXPORT void TopOpeBRepDS_SetThePCurve
//(const TopoDS_Face& fF,const TopoDS_Edge& E,Standard_Real& splitpar); //(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); TopOpeBRepDS_ListIteratorOfListOfInterference ILI(LI);

View File

@ -1965,7 +1965,7 @@ public:
// CASCADE RTTI // CASCADE RTTI
DEFINE_STANDARD_RTTI_INLINE(FilledCircle, AIS_InteractiveObject); 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); FilledCircle (Handle(Geom_Circle) theCircle);
private: 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); myCircle = CreateCircle(theCenter, theRadius);
myFilledStatus = Standard_True; myFilledStatus = Standard_True;

View File

@ -222,13 +222,13 @@ public:
//! Set connection point (for dimesional_size), //! Set connection point (for dimesional_size),
//! Set connection point for the first shape (for dimensional_location). //! Set connection point for the first shape (for dimensional_location).
void SetPoint(const gp_Pnt thePnt) { void SetPoint(const gp_Pnt& thePnt) {
myPnt1 = thePnt; myPnt1 = thePnt;
myHasPoint1 = Standard_True; myHasPoint1 = Standard_True;
} }
// Set connection point for the second shape (for dimensional_location only). // 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; myPnt2 = thePnt;
myHasPoint2 = Standard_True; myHasPoint2 = Standard_True;
} }

View File

@ -254,7 +254,7 @@ Standard_Real XCAFDimTolObjects_GeomToleranceObject::GetMaxValueModifier() cons
//purpose : //purpose :
//======================================================================= //=======================================================================
void XCAFDimTolObjects_GeomToleranceObject::SetAxis (const gp_Ax2 theAxis) void XCAFDimTolObjects_GeomToleranceObject::SetAxis(const gp_Ax2& theAxis)
{ {
myAxis = theAxis; myAxis = theAxis;
myHasAxis = Standard_True; myHasAxis = Standard_True;

View File

@ -105,7 +105,7 @@ public:
//! Returns the maximal upper tolerance. //! Returns the maximal upper tolerance.
Standard_EXPORT Standard_Real GetMaxValueModifier() const; 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; Standard_EXPORT gp_Ax2 GetAxis() const;

View File

@ -100,7 +100,7 @@ Standard_Boolean XCAFDoc_ClippingPlaneTool::GetClippingPlane(const TDF_Label& th
//purpose : //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_Label aLabel;
TDF_LabelSequence aClippingPlanes; TDF_LabelSequence aClippingPlanes;
@ -137,7 +137,7 @@ TDF_Label XCAFDoc_ClippingPlaneTool::AddClippingPlane(const gp_Pln thePlane, con
//purpose : //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()); TCollection_ExtendedString anExtName = TCollection_ExtendedString(theName->String());
return AddClippingPlane(thePlane, anExtName); return AddClippingPlane(thePlane, anExtName);
@ -149,7 +149,7 @@ TDF_Label XCAFDoc_ClippingPlaneTool::AddClippingPlane(const gp_Pln thePlane, con
//purpose : //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); TDF_Label aLabel = AddClippingPlane(thePlane, theName);
Standard_Integer aCappingVal = (theCapping) ? 1 : 0; Standard_Integer aCappingVal = (theCapping) ? 1 : 0;
@ -163,7 +163,7 @@ TDF_Label XCAFDoc_ClippingPlaneTool::AddClippingPlane(const gp_Pln thePlane, con
//purpose : //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()); TCollection_ExtendedString anExtName = TCollection_ExtendedString(theName->String());
return AddClippingPlane(thePlane, anExtName, theCapping); return AddClippingPlane(thePlane, anExtName, theCapping);
@ -206,7 +206,7 @@ void XCAFDoc_ClippingPlaneTool::GetClippingPlanes(TDF_LabelSequence& theLabels)
//======================================================================= //=======================================================================
void XCAFDoc_ClippingPlaneTool::UpdateClippingPlane(const TDF_Label& theLabel, 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()) if (theLabel.Father() != Label())
return; return;

View File

@ -60,22 +60,22 @@ public:
//! Adds a clipping plane definition to a ClippingPlane table and returns //! Adds a clipping plane definition to a ClippingPlane table and returns
//! its label (returns existing label if the same clipping plane //! its label (returns existing label if the same clipping plane
//! is already defined) //! 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 //! Adds a clipping plane definition to a ClippingPlane table and returns
//! its label (returns existing label if the same clipping plane //! its label (returns existing label if the same clipping plane
//! is already defined) //! 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 //! Adds a clipping plane definition to a ClippingPlane table and returns
//! its label (returns existing label if the same clipping plane //! its label (returns existing label if the same clipping plane
//! is already defined) //! 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 //! Adds a clipping plane definition to a ClippingPlane table and returns
//! its label (returns existing label if the same clipping plane //! its label (returns existing label if the same clipping plane
//! is already defined) //! 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 //! Removes clipping plane from the ClippingPlane table
//! Return false and do nothing if clipping plane is referenced in at least one View //! 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 //! 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 //! 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 //! Set new value of capping for given clipping plane label
Standard_EXPORT void SetCapping(const TDF_Label& theClippingPlaneL, const Standard_Boolean theCapping); Standard_EXPORT void SetCapping(const TDF_Label& theClippingPlaneL, const Standard_Boolean theCapping);

View File

@ -60,7 +60,7 @@ public:
return myType; return myType;
} }
void SetProjectionPoint(gp_Pnt thePoint) void SetProjectionPoint(const gp_Pnt& thePoint)
{ {
myProjectionPoint = thePoint; myProjectionPoint = thePoint;
} }
@ -70,7 +70,7 @@ public:
return myProjectionPoint; return myProjectionPoint;
} }
void SetViewDirection(gp_Dir theDirection) void SetViewDirection(const gp_Dir& theDirection)
{ {
myViewDirection = theDirection; myViewDirection = theDirection;
} }
@ -80,7 +80,7 @@ public:
return myViewDirection; return myViewDirection;
} }
void SetUpDirection(gp_Dir theDirection) void SetUpDirection(const gp_Dir& theDirection)
{ {
myUpDirection = theDirection; myUpDirection = theDirection;
} }
@ -200,7 +200,7 @@ public:
return myGDTPoints->Length(); 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()) if (myGDTPoints.IsNull())
return; return;

View File

@ -101,7 +101,10 @@ static double TetraVol(gp_Pnt RefPoint, gp_Pnt Som1, gp_Pnt Som2, gp_Pnt Som3)
//function : TetraCen //function : TetraCen
//purpose : auxiliary //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; gp_XYZ curCentr, plnPnt;
plnPnt = ( Som1.XYZ() + Som2.XYZ() + Som3.XYZ() )/3; plnPnt = ( Som1.XYZ() + Som2.XYZ() + Som3.XYZ() )/3;