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

0033375: Coding - Static Analyzing processing. Performance

Performance update applied:
  - moving to const reference as much as possible
Result of CLANG_TIDY (static analyzing filter: perform*)
This commit is contained in:
dpasukhi 2023-05-06 22:56:45 +00:00 committed by vglukhik
parent c28dd7f1cf
commit b2fedee6a1
265 changed files with 603 additions and 611 deletions

View File

@ -56,7 +56,7 @@ AIS_C0RegularityFilter::AIS_C0RegularityFilter(const TopoDS_Shape& aShape)
}
}
if (Ok) {
TopoDS_Shape curEdge = SubShapes.FindKey( i );
const TopoDS_Shape& curEdge = SubShapes.FindKey( i );
myMapOfEdges.Add(curEdge);
}
}

View File

@ -945,7 +945,7 @@ void AIS_InteractiveContext::Redisplay (const AIS_KindOfInteractive theKOI,
Standard_Boolean isRedisplayed = Standard_False;
for (AIS_DataMapIteratorOfDataMapOfIOStatus anObjIter (myObjects); anObjIter.More(); anObjIter.Next())
{
Handle(AIS_InteractiveObject) anObj = anObjIter.Key();
const Handle(AIS_InteractiveObject)& anObj = anObjIter.Key();
if (anObj->Type() != theKOI)
{
continue;
@ -1155,7 +1155,7 @@ void AIS_InteractiveContext::SetDisplayMode(const Standard_Integer theMode,
continue;
}
Handle(AIS_GlobalStatus) aStatus = anObjIter.Value();
const Handle(AIS_GlobalStatus)& aStatus = anObjIter.Value();
aStatus->SetDisplayMode (theMode);
if (anObj->DisplayStatus() == PrsMgr_DisplayStatus_Displayed)
@ -2251,7 +2251,7 @@ Bnd_Box AIS_InteractiveContext::BoundingBoxOfSelection (const Handle(V3d_View)&
for (AIS_MapIteratorOfMapOfObjectOwners anIter (anObjectOwnerMap); anIter.More(); anIter.Next())
{
const Handle(SelectMgr_SelectableObject) anObject = anIter.Key();
const Handle(SelectMgr_SelectableObject)& anObject = anIter.Key();
Bnd_Box aTmpBox = anObject->BndBoxOfSelected (anIter.ChangeValue());
aBndSelected.Add (aTmpBox);
}

View File

@ -1789,7 +1789,7 @@ int maoverf_(integer *nbentr,
/* Loop. The upper limit is the integer value of the logarithm of base 2
*/
/* of NBENTR/NLONGR. */
i__1 = (integer) (log((real) (*nbentr) / (float)63.) / log((float)2.))
i__1 = (integer) (std::log((real) (*nbentr) / (float)63.) / std::log((float)2.))
;
for (ibid = 1; ibid <= i__1; ++ibid) {

View File

@ -556,7 +556,7 @@ void Approx_CurveOnSurface::Perform(const Standard_Integer theMaxSegments,
//function : isIsoLine
//purpose :
//=============================================================================
Standard_Boolean Approx_CurveOnSurface::isIsoLine(const Handle(Adaptor2d_Curve2d) theC2D,
Standard_Boolean Approx_CurveOnSurface::isIsoLine(const Handle(Adaptor2d_Curve2d)& theC2D,
Standard_Boolean& theIsU,
Standard_Real& theParam,
Standard_Boolean& theIsForward) const
@ -638,7 +638,7 @@ Standard_Boolean Approx_CurveOnSurface::isIsoLine(const Handle(Adaptor2d_Curve2d
//function : buildC3dOnIsoLine
//purpose :
//=============================================================================
Standard_Boolean Approx_CurveOnSurface::buildC3dOnIsoLine(const Handle(Adaptor2d_Curve2d) theC2D,
Standard_Boolean Approx_CurveOnSurface::buildC3dOnIsoLine(const Handle(Adaptor2d_Curve2d)& theC2D,
const Standard_Boolean theIsU,
const Standard_Real theParam,
const Standard_Boolean theIsForward)

View File

@ -85,7 +85,7 @@ protected:
//! @param theParam Line parameter.
//! @param theIsForward Flag indicating forward parameterization on a isoline.
//! @return Standard_True when 2d curve is a line and Standard_False otherwise.
Standard_Boolean isIsoLine(const Handle(Adaptor2d_Curve2d) theC2D,
Standard_Boolean isIsoLine(const Handle(Adaptor2d_Curve2d)& theC2D,
Standard_Boolean& theIsU,
Standard_Real& theParam,
Standard_Boolean& theIsForward) const;
@ -97,7 +97,7 @@ protected:
//! @param theParam Line parameter.
//! @param theIsForward Flag indicating forward parameterization on a isoline.
//! @return Standard_True when 3d curve is built and Standard_False otherwise.
Standard_Boolean buildC3dOnIsoLine(const Handle(Adaptor2d_Curve2d) theC2D,
Standard_Boolean buildC3dOnIsoLine(const Handle(Adaptor2d_Curve2d)& theC2D,
const Standard_Boolean theIsU,
const Standard_Real theParam,
const Standard_Boolean theIsForward);

View File

@ -733,7 +733,7 @@ void MakeInternalShells(const TopTools_IndexedMapOfShape& theMF,
//
aNbF = theMF.Extent();
for (i = 1; i <= aNbF; ++i) {
TopoDS_Shape aF = theMF(i);
const TopoDS_Shape& aF = theMF(i);
TopExp::MapShapesAndAncestors(aF,
TopAbs_EDGE, TopAbs_FACE,
aMEF);

View File

@ -667,7 +667,7 @@ Standard_Integer bopcurves (Draw_Interpretor& di,
for (Standard_Integer i=1; i<=aNbCurves; i++) {
const IntTools_Curve& anIC=aSCs(i);
Handle (Geom_Curve) aC3D = anIC.Curve();
const Handle (Geom_Curve)& aC3D = anIC.Curve();
if (aC3D.IsNull()) {
di << " has Null 3d curve# " << i << "\n";
@ -682,8 +682,8 @@ Standard_Integer bopcurves (Draw_Interpretor& di,
DrawTrSurf::Set(nameC, aC3D);
di << nameC << " ";
//
Handle(Geom2d_Curve) aPC1 = anIC.FirstCurve2d();
Handle(Geom2d_Curve) aPC2 = anIC.SecondCurve2d();
const Handle(Geom2d_Curve)& aPC1 = anIC.FirstCurve2d();
const Handle(Geom2d_Curve)& aPC2 = anIC.SecondCurve2d();
//
if (!aPC1.IsNull() || !aPC2.IsNull()) {
di << "(";

View File

@ -736,7 +736,7 @@ void Add(const TopoDS_Shape& aS,
return;
}
//
TopoDS_Shape aSx = aS;
const TopoDS_Shape& aSx = aS;
//
anIndex=myShapes.FindIndex(aSx);
if (!anIndex) {

View File

@ -112,7 +112,7 @@ void BOPTools_AlgoTools::MakeSectEdge(const IntTools_Curve& aIC,
const Standard_Real aP2,
TopoDS_Edge& aNewEdge)
{
Handle(Geom_Curve) aC=aIC.Curve ();
const Handle(Geom_Curve)& aC=aIC.Curve ();
BRepBuilderAPI_MakeEdge aMakeEdge(aC, aV1, aV2, aP1, aP2);

View File

@ -383,7 +383,7 @@ TopoDS_Edge BRepAlgo::ConcatenateWireC0(const TopoDS_Wire& aWire)
BRepTools_WireExplorer wexp(theWire);
for (; wexp.More(); wexp.Next()) {
TopoDS_Edge anEdge = wexp.Current();
const TopoDS_Edge& anEdge = wexp.Current();
Standard_Real fpar, lpar;
Handle(Geom_Curve) aCurve = BRep_Tool::Curve(anEdge, fpar, lpar);
@ -392,7 +392,7 @@ TopoDS_Edge BRepAlgo::ConcatenateWireC0(const TopoDS_Wire& aWire)
GeomAdaptor_Curve aGACurve(aCurve);
GeomAbs_CurveType aType = aGACurve.GetType();
Handle(Geom_Curve) aBasisCurve = aGACurve.Curve();
const Handle(Geom_Curve)& aBasisCurve = aGACurve.Curve();
Standard_Boolean isFwd = (wexp.Orientation() != TopAbs_REVERSED);
if (aBasisCurve->IsPeriodic()) {

View File

@ -284,7 +284,7 @@ static void RemovePendingEdges(TopTools_IndexedDataMapOfShapeListOfShape& MVE)
//purpose :
//=======================================================================
static Standard_Boolean SamePnt2d(TopoDS_Vertex V,
static Standard_Boolean SamePnt2d(const TopoDS_Vertex& V,
TopoDS_Edge& E1,
TopoDS_Edge& E2,
TopoDS_Face& F)

View File

@ -47,7 +47,7 @@
//
static Standard_Boolean CanUseEdges(const Adaptor3d_Surface& BS);
//
static void FindExactUVBounds(const TopoDS_Face F,
static void FindExactUVBounds(const TopoDS_Face& F,
Standard_Real& umin, Standard_Real& umax,
Standard_Real& vmin, Standard_Real& vmax,
const Standard_Real Tol,
@ -460,7 +460,7 @@ Standard_Boolean CanUseEdges(const Adaptor3d_Surface& BS)
//function : FindExactUVBounds
//purpose :
//=======================================================================
void FindExactUVBounds(const TopoDS_Face FF,
void FindExactUVBounds(const TopoDS_Face& FF,
Standard_Real& umin, Standard_Real& umax,
Standard_Real& vmin, Standard_Real& vmax,
const Standard_Real Tol,

View File

@ -58,7 +58,7 @@ static void BuildBack (const TopTools_DataMapOfShapeListOfShape& M1,
//=======================================================================
static void Replace ( TopTools_ListOfShape& L,
const TopoDS_Shape Old,
const TopoDS_Shape& Old,
const TopTools_ListOfShape& New)
{
//-----------------------------------
@ -150,7 +150,7 @@ static void Update ( TopTools_DataMapOfShapeListOfShape& Mod,
if (!LIG.IsEmpty()) {
if (ModBack.IsBound(S)) {
// Generation de modif => generation du shape initial
TopoDS_Shape IS = ModBack(S);
const TopoDS_Shape& IS = ModBack(S);
StoreImage (Gen,IS,GenBack,LIG);
}
else {

View File

@ -237,7 +237,7 @@ void BRepBuilderAPI_MakeShapeOnMesh::Build(const Message_ProgressRange& theRange
gp_Pln aPln(myMesh->Node(anIdx[0]), aNorm);
BRepBuilderAPI_MakeFace aFaceMaker(aPln, aWire);
const TopoDS_Face aFace = aFaceMaker.Face();
const TopoDS_Face& aFace = aFaceMaker.Face();
aBB.Add(aResult, aFace);
}

View File

@ -374,7 +374,7 @@ TopoDS_Edge BRepBuilderAPI_Sewing::SameParameterEdge(const TopoDS_Shape& edge,
for (Standard_Integer i = 1; i <= seqEdges.Length(); i++) {
// Retrieve candidate section
TopoDS_Shape oedge2 = seqEdges(i);
const TopoDS_Shape& oedge2 = seqEdges(i);
if (mySewing) {
@ -1393,7 +1393,7 @@ void BRepBuilderAPI_Sewing::AnalysisNearestEdges(const TopTools_SequenceOfShape&
// (they have other nearest edges belonging to the work face)
for(Standard_Integer k = 1; k<= seqNotCandidate.Length(); k++) {
Standard_Integer index1 = seqNotCandidate.Value(k);
TopoDS_Shape edge = sequenceSec.Value(index1);
const TopoDS_Shape& edge = sequenceSec.Value(index1);
TopTools_SequenceOfShape tmpSeq;
tmpSeq.Append(edge);
for(Standard_Integer kk = 1; kk <= seqIndCandidate.Length();kk++)
@ -2928,7 +2928,7 @@ void BRepBuilderAPI_Sewing::VerticesAssembling(const Message_ProgressRange& theP
for (i = 1; i <= myBoundFaces.Extent(); i++) {
TopoDS_Shape bound = myBoundFaces.FindKey(i);
for (TopoDS_Iterator itv(bound,Standard_False); itv.More(); itv.Next()) {
TopoDS_Shape node = itv.Value();
const TopoDS_Shape& node = itv.Value();
if (myNodeSections.IsBound(node))
myNodeSections(node).Append(bound);
else {
@ -2991,7 +2991,7 @@ static void replaceNMVertices(const TopoDS_Edge& theEdge,
theReShape->Replace(aSeqNMVert.Value(i),theV2);
continue;
}
TopoDS_Shape aV = aSeqNMVert.Value(i);
const TopoDS_Shape& aV = aSeqNMVert.Value(i);
Standard_Integer j =1;
for( ; j <= aEdParams.Length();j++) {
Standard_Real apar2 = aEdParams.Value(j);
@ -3508,7 +3508,7 @@ Standard_Boolean BRepBuilderAPI_Sewing::MergedNearestEdges(const TopoDS_Shape& e
TopTools_MapOfShape mapEdges;
mapEdges.Add(edge);
for (Standard_Integer i = 1; i <= mapVert1.Extent(); i++) {
TopoDS_Shape node1 = mapVert1.FindKey(i);
const TopoDS_Shape& node1 = mapVert1.FindKey(i);
if (!myNodeSections.IsBound(node1)) continue;
TopTools_ListIteratorOfListOfShape ilsec(myNodeSections(node1));
for (; ilsec.More(); ilsec.Next()) {
@ -4453,7 +4453,7 @@ void BRepBuilderAPI_Sewing::CreateCuttingNodes(const TopTools_IndexedMapOfShape&
if (jdist < 0.0) {
// Bind new cutting node (end vertex only)
seqDist.SetValue(indexMin,disProj);
TopoDS_Shape cvertex = seqVert.Value(indexMin);
const TopoDS_Shape& cvertex = seqVert.Value(indexMin);
NodeCuttingVertex.Add(node,cvertex);
}
else {

View File

@ -625,7 +625,7 @@ static Standard_Boolean Intersect(const TopoDS_Wire& wir1,
MapW1.Add( exp1.Current() );
for (exp2.Init( wir2, TopAbs_VERTEX ); exp2.More(); exp2.Next())
{
TopoDS_Shape V = exp2.Current();
const TopoDS_Shape& V = exp2.Current();
if (MapW1.Contains( V ))
CommonVertices.Append( V );
}

View File

@ -248,7 +248,6 @@ void CheckSkip(Geom2dInt_GInter& theInter,
{
return;
}
const TopoDS_Edge anEl = theE.NextEdge(); // the next edge
if (!(BRep_Tool::Tolerance(aVl) > theMaxTol) || theE.NextEdge().IsNull())
{
return;

View File

@ -46,7 +46,7 @@ static
//gets transition of line <L> passing through/near the edge <e> of faces <f1>, <f2>. <param> is
// a parameter on the edge where the minimum distance between <l> and <e> was found
static Standard_Integer GetTransi(const TopoDS_Face& f1, const TopoDS_Face& f2, const TopoDS_Edge e,
static Standard_Integer GetTransi(const TopoDS_Face& f1, const TopoDS_Face& f2, const TopoDS_Edge& e,
Standard_Real param, const gp_Lin& L, IntCurveSurface_TransitionOnCurve& trans);
static Standard_Boolean GetNormalOnFaceBound(const TopoDS_Edge& E, const TopoDS_Face& F, Standard_Real param, gp_Dir& OutDir);
@ -607,7 +607,7 @@ static Standard_Boolean GetNormalOnFaceBound(const TopoDS_Edge& E,
//=======================================================================
static Standard_Integer GetTransi(const TopoDS_Face& f1,
const TopoDS_Face& f2,
const TopoDS_Edge e,
const TopoDS_Edge& e,
const Standard_Real param,
const gp_Lin& L,
IntCurveSurface_TransitionOnCurve& trans)

View File

@ -65,8 +65,8 @@ namespace
}
}
inline Standard_Real DistanceInitiale(const TopoDS_Vertex V1,
const TopoDS_Vertex V2)
inline Standard_Real DistanceInitiale(const TopoDS_Vertex& V1,
const TopoDS_Vertex& V2)
{
return (BRep_Tool::Pnt(V1).Distance(BRep_Tool::Pnt(V2)));
}

View File

@ -312,7 +312,7 @@ void BRepFeat::ParametricMinMax(const TopoDS_Shape& S,
//=======================================================================
static Standard_Boolean IsIn (BRepTopAdaptor_FClass2d& FC,
Geom2dAdaptor_Curve AC)
const Geom2dAdaptor_Curve& AC)
{
Standard_Real Def = 100*Precision::Confusion();
GCPnts_QuasiUniformDeflection QU(AC,Def);

View File

@ -489,7 +489,7 @@ static void Descendants(const TopoDS_Shape&,
#endif
theGlue.Perform();
if (theGlue.IsDone()) {
TopoDS_Shape shshs = theGlue.ResultingShape();
const TopoDS_Shape& shshs = theGlue.ResultingShape();
// if (BRepOffsetAPI::IsTopologicallyValid(shshs)) {
if (BRepAlgo::IsValid(shshs)) {
UpdateDescendants(theGlue);

View File

@ -66,7 +66,7 @@ static Standard_Real HeightMax(const TopoDS_Shape& theSbase,
const TopoDS_Shape& theSFrom,
const TopoDS_Shape& theSUntil);
static Standard_Integer SensOfPrism(const Handle(Geom_Curve) C,
static Standard_Integer SensOfPrism(const Handle(Geom_Curve)& C,
const TopoDS_Shape& Until);
static Handle(Geom_Curve) TestCurve(const TopoDS_Face&);
@ -212,13 +212,13 @@ void BRepFeat_MakeDPrism::Perform(const Standard_Real Height)
// myPbase.Orientation(TopAbs_FORWARD);
LocOpe_DPrism theDPrism(myPbase,theheight,myAngle);
TopoDS_Shape VraiDPrism = theDPrism.Shape();
const TopoDS_Shape& VraiDPrism = theDPrism.Shape();
MajMap(myPbase,theDPrism,myMap,myFShape,myLShape);
myGShape = VraiDPrism;
GeneratedShapeValid();
TopoDS_Shape Base = theDPrism.FirstShape();
const TopoDS_Shape& Base = theDPrism.FirstShape();
TopExp_Explorer exp(Base, TopAbs_FACE);
TopoDS_Face theBase = TopoDS::Face(exp.Current());
exp.Next();
@ -295,12 +295,12 @@ void BRepFeat_MakeDPrism::Perform(const TopoDS_Shape& Until)
Standard_Real Height =
sens*HeightMax(mySbase, mySkface, mySFrom, mySUntil);
LocOpe_DPrism theDPrism(myPbase,Height,myAngle);
TopoDS_Shape VraiDPrism = theDPrism.Shape();
const TopoDS_Shape& VraiDPrism = theDPrism.Shape();
if(!Trf) {
MajMap(myPbase,theDPrism,myMap,myFShape,myLShape);
myGShape = VraiDPrism;
GeneratedShapeValid();
TopoDS_Shape Base = theDPrism.FirstShape();
const TopoDS_Shape& Base = theDPrism.FirstShape();
exp.Init(Base, TopAbs_FACE);
TopoDS_Face theBase = TopoDS::Face(exp.Current());
exp.Next();
@ -350,7 +350,7 @@ void BRepFeat_MakeDPrism::Perform(const TopoDS_Shape& Until)
UpdateDescendants(trP, trP.Shape(), Standard_False);
TopExp_Explorer ex(trP.Shape(), TopAbs_SOLID);
TopoDS_Shape Cutsh = ex.Current();
const TopoDS_Shape& Cutsh = ex.Current();
if(myFuse == 1) {
BRepAlgoAPI_Fuse f(mySbase, Cutsh);
myShape = f.Shape();
@ -446,7 +446,7 @@ void BRepFeat_MakeDPrism::Perform(const TopoDS_Shape& From,
Standard_Real Height =
sens*HeightMax(mySbase, myPbase, mySFrom, mySUntil);
LocOpe_DPrism theDPrism(myPbase, Height, Height, myAngle);
TopoDS_Shape VraiDPrism = theDPrism.Shape();
const TopoDS_Shape& VraiDPrism = theDPrism.Shape();
if(!Trff) {
@ -575,7 +575,7 @@ void BRepFeat_MakeDPrism::PerformUntilEnd()
// myPbase.Orientation(TopAbs_FORWARD);
LocOpe_DPrism theDPrism(myPbase, Height, myAngle);
TopoDS_Shape VraiDPrism = theDPrism.Shape();
const TopoDS_Shape& VraiDPrism = theDPrism.Shape();
MajMap(myPbase,theDPrism,myMap,myFShape,myLShape);
@ -624,7 +624,7 @@ void BRepFeat_MakeDPrism::PerformFromEnd(const TopoDS_Shape& Until)
sens*HeightMax(mySbase, mySkface, mySFrom, mySUntil);
LocOpe_DPrism theDPrism(myPbase, Height, Height, myAngle);
TopoDS_Shape VraiDPrism = theDPrism.Shape();
const TopoDS_Shape& VraiDPrism = theDPrism.Shape();
if(VraiDPrism.IsNull()) {
NotDone();
myStatusError = BRepFeat_NullRealTool;
@ -762,7 +762,7 @@ void BRepFeat_MakeDPrism::PerformThruAll()
Standard_Real Height = HeightMax(mySbase, mySkface, mySFrom, mySUntil);
LocOpe_DPrism theDPrism(myPbase, Height, Height, myAngle);
TopoDS_Shape VraiDPrism = theDPrism.Shape();
const TopoDS_Shape& VraiDPrism = theDPrism.Shape();
MajMap(myPbase,theDPrism,myMap,myFShape,myLShape);
myGShape = VraiDPrism;
@ -819,13 +819,13 @@ void BRepFeat_MakeDPrism::PerformUntilHeight(const TopoDS_Shape& Until,
Standard_Integer sens = SensOfPrism(C, mySUntil);
LocOpe_DPrism theDPrism(myPbase,sens*Height,myAngle);
TopoDS_Shape VraiDPrism = theDPrism.Shape();
const TopoDS_Shape& VraiDPrism = theDPrism.Shape();
if(!Trf) { // case face finished
MajMap(myPbase,theDPrism,myMap,myFShape,myLShape);
myGShape = VraiDPrism;
GeneratedShapeValid();
TopoDS_Shape Base = theDPrism.FirstShape();
const TopoDS_Shape& Base = theDPrism.FirstShape();
exp.Init(Base, TopAbs_FACE);
TopoDS_Face theBase = TopoDS::Face(exp.Current());
exp.Next();
@ -1074,7 +1074,7 @@ static Standard_Real HeightMax(const TopoDS_Shape& theSbase, // shape initial
//function : SensOfPrism
//purpose : determine the direction of prism generation
//=======================================================================
Standard_Integer SensOfPrism(const Handle(Geom_Curve) C,
Standard_Integer SensOfPrism(const Handle(Geom_Curve)& C,
const TopoDS_Shape& Until)
{
LocOpe_CSIntersector ASI1(Until);

View File

@ -68,7 +68,7 @@ static Standard_Real HeightMax(const TopoDS_Shape& theSbase,
const TopoDS_Shape& theSFrom,
const TopoDS_Shape& theSUntil);
static Standard_Integer SensOfPrism(const Handle(Geom_Curve) C,
static Standard_Integer SensOfPrism(const Handle(Geom_Curve)& C,
const TopoDS_Shape& Until);
static Handle(Geom_Curve) TestCurve(const TopoDS_Shape&,
@ -215,7 +215,7 @@ void BRepFeat_MakePrism::Perform(const Standard_Real Length)
//construction of prism of height Length
LocOpe_Prism thePrism(myPbase,V);
TopoDS_Shape VraiPrism = thePrism.Shape();
const TopoDS_Shape& VraiPrism = thePrism.Shape();
// management of descendants
MajMap(myPbase,thePrism,myMap,myFShape,myLShape);
@ -325,7 +325,7 @@ void BRepFeat_MakePrism::Perform(const TopoDS_Shape& Until)
// construction of long prism
LocOpe_Prism thePrism(myPbase,V);
TopoDS_Shape VraiPrism = thePrism.Shape();
const TopoDS_Shape& VraiPrism = thePrism.Shape();
// in case of support of face Until
if(!Trf) {
@ -366,7 +366,7 @@ void BRepFeat_MakePrism::Perform(const TopoDS_Shape& Until)
UpdateDescendants(trP, trP.Shape(), Standard_False);
//
TopExp_Explorer ex(trP.Shape(), TopAbs_SOLID);
TopoDS_Shape Cutsh = ex.Current();
const TopoDS_Shape& Cutsh = ex.Current();
if (myFuse == 1 && !myJustFeat) {
BRepAlgoAPI_Fuse f(mySbase, Cutsh);
myShape = f.Shape();
@ -591,7 +591,7 @@ void BRepFeat_MakePrism::PerformUntilEnd()
gp_Vec V(2*Height*myDir);
LocOpe_Prism thePrism(myPbase,V);
TopoDS_Shape VraiPrism = thePrism.Shape();
const TopoDS_Shape& VraiPrism = thePrism.Shape();
MajMap(myPbase,thePrism,myMap,myFShape,myLShape);
@ -651,7 +651,7 @@ void BRepFeat_MakePrism::PerformFromEnd(const TopoDS_Shape& Until)
gp_Vec Vtra(-3*Height*sens/2.*myDir);
gp_Vec Vect(3*sens*Height*myDir);
LocOpe_Prism thePrism(myPbase,Vect,Vtra);
TopoDS_Shape VraiPrism = thePrism.Shape();
const TopoDS_Shape& VraiPrism = thePrism.Shape();
if(!Trf) { // case face until
MajMap(myPbase,thePrism,myMap,myFShape,myLShape);
@ -775,7 +775,7 @@ void BRepFeat_MakePrism::PerformThruAll()
gp_Vec V(3*Height*myDir);
gp_Vec Vtra(-3*Height/2.*myDir);
LocOpe_Prism thePrism(myPbase,V,Vtra);
TopoDS_Shape VraiPrism = thePrism.Shape();
const TopoDS_Shape& VraiPrism = thePrism.Shape();
MajMap(myPbase,thePrism,myMap,myFShape,myLShape);
myGShape = VraiPrism;
@ -830,7 +830,7 @@ void BRepFeat_MakePrism::PerformUntilHeight(const TopoDS_Shape& Until,
Standard_Integer sens = SensOfPrism(C, mySUntil);
gp_Vec V(sens*Length*myDir);
LocOpe_Prism thePrism(myPbase,V);
TopoDS_Shape VraiPrism = thePrism.Shape();
const TopoDS_Shape& VraiPrism = thePrism.Shape();
if(!Trf) {
MajMap(myPbase,thePrism,myMap,myFShape,myLShape);
@ -978,7 +978,7 @@ static Standard_Real HeightMax(const TopoDS_Shape& theSbase,
//function : SensOfPrism
//purpose : Direction of the prism depending on the shape Until
//=======================================================================
Standard_Integer SensOfPrism(const Handle(Geom_Curve) C,
Standard_Integer SensOfPrism(const Handle(Geom_Curve)& C,
const TopoDS_Shape& Until)
{
LocOpe_CSIntersector ASI1(Until);

View File

@ -353,7 +353,7 @@ void BRepFeat_MakeRevol::Perform(const TopoDS_Shape& Until)
myGShape = VraiRevol;
GeneratedShapeValid();
TopoDS_Shape Base = theRevol.FirstShape();
const TopoDS_Shape& Base = theRevol.FirstShape();
exp.Init(Base, TopAbs_FACE);
TopoDS_Face theBase = TopoDS::Face(exp.Current());
exp.Next();
@ -633,7 +633,7 @@ void BRepFeat_MakeRevol::PerformUntilAngle(const TopoDS_Shape& Until,
myGShape = VraiRevol;
GeneratedShapeValid();
TopoDS_Shape Base = theRevol.FirstShape();
const TopoDS_Shape& Base = theRevol.FirstShape();
exp.Init(Base, TopAbs_FACE);
TopoDS_Face theBase = TopoDS::Face(exp.Current());
exp.Next();
@ -732,7 +732,7 @@ static void VerifGluedFaces(const TopoDS_Face& theSkface,
TopTools_DataMapOfShapeShape& theMap)
{
Standard_Boolean GluedFaces = Standard_True;
TopoDS_Shape VraiRevol = theRevol.Shape();
const TopoDS_Shape& VraiRevol = theRevol.Shape();
TColGeom_SequenceOfCurve scur;
theRevol.Curves(theCurves);

View File

@ -986,8 +986,8 @@ TopoDS_Wire BRepFill::InsertACR(const TopoDS_Wire& wire,
}
}
TopoDS_Edge E = anExp.Current();
TopoDS_Vertex V = anExp.CurrentVertex();
const TopoDS_Edge& E = anExp.Current();
const TopoDS_Vertex& V = anExp.CurrentVertex();
if (ndec==0 || BRep_Tool::Degenerated(E)) {
// copy the edge

View File

@ -128,7 +128,7 @@ static void AddNewEdge(const TopoDS_Shape& theEdge,
const TopTools_SequenceOfShape& NewEdges = theEdgeNewEdges(theEdge);
for (Standard_Integer i = 1; i <= NewEdges.Length(); i++)
{
TopoDS_Shape anEdge = NewEdges(i);
const TopoDS_Shape& anEdge = NewEdges(i);
AddNewEdge(anEdge, theEdgeNewEdges, ListNewEdges);
}
}
@ -1309,7 +1309,7 @@ void BRepFill_CompatibleWires::
TopTools_DataMapIteratorOfDataMapOfShapeListOfShape itmap(myMap);
for (; itmap.More(); itmap.Next())
{
TopoDS_Shape anEdge = itmap.Key();
const TopoDS_Shape& anEdge = itmap.Key();
TopTools_ListOfShape ListOfNewEdges;
//for each edge of <myMap> find all newest edges

View File

@ -711,7 +711,7 @@ void BRepFill_Evolved::ElementaryPerform (const TopoDS_Face& Sp,
for (WireExp.Init(TopoDS::Wire(FaceExp.Current())); WireExp.More();
WireExp.Next()) {
TopoDS_Edge CurrentEdge = WireExp.Current();
const TopoDS_Edge& CurrentEdge = WireExp.Current();
TopoDS_Vertex VFirst,VLast;
EdgeVertices(CurrentEdge,VFirst,VLast);
@ -2139,7 +2139,7 @@ void BRepFill_Evolved::MakeSolid()
B.MakeCompound(Res);
for (; exp.More(); exp.Next()) {
TopoDS_Shape Sh = exp.Current();
const TopoDS_Shape& Sh = exp.Current();
B.MakeSolid(Sol);
B.Add(Sol,Sh);
BRepClass3d_SolidClassifier SC(Sol);

View File

@ -59,7 +59,7 @@
#include <TopoDS_Wire.hxx>
#include <Geom_Surface.hxx>
static gp_Vec MakeFinVec( const TopoDS_Wire aWire, const TopoDS_Vertex aVertex )
static gp_Vec MakeFinVec( const TopoDS_Wire& aWire, const TopoDS_Vertex& aVertex )
{
TopoDS_Vertex Vfirst, Vlast, Origin;
BRepTools_WireExplorer Explo( aWire );

View File

@ -655,7 +655,7 @@ static gp_Pnt2d ValueOnFace(const Standard_Real U,
}
#endif
Geom2dAdaptor_Curve Cu1 = TheV;
const Geom2dAdaptor_Curve& Cu1 = TheV;
Geom2dAdaptor_Curve Cu2( Line);
Standard_Real TolConf = 0.;

View File

@ -570,7 +570,7 @@ void BRepFill_OffsetWire::Perform (const Standard_Real Offset,
TopoDS_Iterator itws( myWorkSpine );
for (; itws.More(); itws.Next())
{
TopoDS_Shape aWire = itws.Value();
const TopoDS_Shape& aWire = itws.Value();
aSubst.Build( aWire );
if (aSubst.IsCopied(aWire))
{

View File

@ -746,7 +746,7 @@ TopoDS_Shape BRepFill_Pipe::MakeShape(const TopoDS_Shape& S,
TopExp_Explorer Explo(result, TopAbs_FACE);
for (; Explo.More(); Explo.Next())
{
TopoDS_Shape aFace = Explo.Current();
const TopoDS_Shape& aFace = Explo.Current();
RebuildTopOrBottomFace(aFace.Reversed(), Standard_True); //top face was reversed
}
/////
@ -987,7 +987,7 @@ void BRepFill_Pipe::RebuildTopOrBottomFace(const TopoDS_Shape& aFace,
TopoDS_Iterator itw(aWire);
for (; itw.More(); itw.Next())
{
TopoDS_Shape anEdge = itw.Value();
const TopoDS_Shape& anEdge = itw.Value();
for (ii = myCurIndexOfSectionEdge; ii <= mySections->ColLength(); ii++)
{
TopoDS_Shape aVisoEdge = mySections->Value(ii, IndexOfSection);

View File

@ -1116,7 +1116,7 @@ void BRepFill_PipeShell::Generated(const TopoDS_Shape& theShape,
for (; Explo.More(); Explo.Next())
{
const TopoDS_Edge& anEdge = TopoDS::Edge(Explo.Current());
TopTools_ListOfShape aNewEdges = Georges.GeneratedShapes(anEdge);
const TopTools_ListOfShape& aNewEdges = Georges.GeneratedShapes(anEdge);
myEdgeNewEdges.Bind(anEdge, aNewEdges);
}
}
@ -1168,7 +1168,7 @@ void BRepFill_PipeShell::Place(const BRepFill_Section& Sec,
Sec.Vertex(),
Sec.WithContact(),
Sec.WithCorrection());
TopoDS_Wire TmpWire = Sec.Wire();
const TopoDS_Wire& TmpWire = Sec.Wire();
aTrsf = Place.Transformation();
//Transform the copy
W = TopoDS::Wire(BRepBuilderAPI_Transform(TmpWire, aTrsf, Standard_True));

View File

@ -798,7 +798,7 @@ static TopoDS_Edge BuildEdge(Handle(Geom_Curve)& C3d,
const Handle(IntTools_Context) aNullCtx;
if (BOPTools_AlgoTools::IsMicroEdge(E, aNullCtx))
{
TopoDS_Vertex aV = VF;
const TopoDS_Vertex& aV = VF;
B.UpdateVertex(aV, P1.Distance(P2));
B.MakeEdge(E);
B.UpdateEdge(E, C2d, S, TopLoc_Location(), Tol);

View File

@ -180,8 +180,8 @@ static void EvalParameters(const Geom2dAdaptor_Curve& Bis,
Standard_Real Tol = Precision::Confusion();
// Standard_Real TolC = 1.e-9;
Geom2dAdaptor_Curve CBis(Bis);
Geom2dAdaptor_Curve CAC (AC);
const Geom2dAdaptor_Curve& CBis(Bis);
const Geom2dAdaptor_Curve& CAC (AC);
//Intersector = Geom2dInt_GInter(CBis, CAC, TolC, Tol);
Intersector = Geom2dInt_GInter(CAC, CBis, Tol, Tol);
@ -245,8 +245,8 @@ static void EvalParametersBis(const Geom2dAdaptor_Curve& Bis,
Geom2dInt_GInter Intersector;
Standard_Real TolC = Tol;
Geom2dAdaptor_Curve CBis(Bis);
Geom2dAdaptor_Curve CAC (AC);
const Geom2dAdaptor_Curve& CBis(Bis);
const Geom2dAdaptor_Curve& CAC (AC);
Intersector = Geom2dInt_GInter(CAC, CBis, TolC, Tol);

View File

@ -571,7 +571,7 @@ BRepFill_TrimShellCorner::MakeFacesNonSec(const Standard_Integer
aIt.Initialize(aLP);
for ( ; aIt.More(); aIt.Next()) {
const BOPDS_Pave& aPave = aIt.Value();
TopoDS_Shape aV = theDS->Shape(aPave.Index());
const TopoDS_Shape& aV = theDS->Shape(aPave.Index());
if(aV.IsSame(alonevertices.First())) {
if(!bfound1) {

View File

@ -288,8 +288,8 @@ static Standard_Integer evaluateMaxSegment(const Standard_Integer aMaxSegment,
{
if (aMaxSegment != 0) return aMaxSegment;
Handle(Adaptor3d_Surface) aSurf = aCurveOnSurface.GetSurface();
Handle(Adaptor2d_Curve2d) aCurv2d = aCurveOnSurface.GetCurve();
const Handle(Adaptor3d_Surface)& aSurf = aCurveOnSurface.GetSurface();
const Handle(Adaptor2d_Curve2d)& aCurv2d = aCurveOnSurface.GetCurve();
Standard_Real aNbSKnots = 0, aNbC2dKnots = 0;
@ -1188,7 +1188,7 @@ static void GetCurve3d(const TopoDS_Edge& theEdge, Handle(Geom_Curve)& theC3d, S
//function : UpdateVTol
//purpose :
//=======================================================================
void UpdateVTol(const TopoDS_Vertex theV1, const TopoDS_Vertex& theV2, Standard_Real theTol)
void UpdateVTol(const TopoDS_Vertex& theV1, const TopoDS_Vertex& theV2, Standard_Real theTol)
{
BRep_Builder aB;
if (!theV1.IsNull())

View File

@ -205,7 +205,7 @@ Standard_Boolean BRepLib_PointCloudShape::addDensityPoints (const TopoDS_Shape&
BRepTools::UVBounds (aFace, anUMin, anUMax, aVMin, aVMax);
BRepTopAdaptor_FClass2d aClassifier (aFace, Precision::Confusion());
TopLoc_Location aLoc = theFace.Location();
const TopLoc_Location& aLoc = theFace.Location();
const gp_Trsf& aTrsf = aLoc.Transformation();
TopLoc_Location aLoc1;
Handle(Geom_Surface) aSurf = BRep_Tool::Surface (aFace, aLoc1);

View File

@ -163,7 +163,7 @@ void BRepMAT2d_Explorer::Add(const TopoDS_Wire& Spine,
// Treatment of the next edges:
for (; anExp.More(); anExp.Next()) {
TopoDS_Edge anEdge = anExp.Current();
const TopoDS_Edge& anEdge = anExp.Current();
anOldNewE.Add(anEdge, anEdge);
C2d = BRep_Tool::CurveOnSurface (anEdge, aFace, UFirst, ULast);

View File

@ -1103,7 +1103,7 @@ Standard_Integer BRepMesh_Delaun::findNextPolygonLink(
const gp_Vec2d& theRefLinkDir,
const IMeshData::SequenceOfBndB2d& theBoxes,
const IMeshData::SequenceOfInteger& thePolygon,
const Handle(IMeshData::MapOfInteger) theSkipped,
const Handle(IMeshData::MapOfInteger)& theSkipped,
const Standard_Boolean& isSkipLeprous,
IMeshData::MapOfInteger& theLeprousLinks,
IMeshData::MapOfInteger& theDeadLinks,

2
src/BRepMesh/BRepMesh_Delaun.hxx Executable file → Normal file
View File

@ -214,7 +214,7 @@ private:
const gp_Vec2d& theRefLinkDir,
const IMeshData::SequenceOfBndB2d& theBoxes,
const IMeshData::SequenceOfInteger& thePolygon,
const Handle(IMeshData::MapOfInteger) theSkipped,
const Handle(IMeshData::MapOfInteger)& theSkipped,
const Standard_Boolean& isSkipLeprous,
IMeshData::MapOfInteger& theLeprousLinks,
IMeshData::MapOfInteger& theDeadLinks,

View File

@ -966,8 +966,8 @@ static void RefEdgeInter(const TopoDS_Face& F,
static Standard_Integer evaluateMaxSegment(const Adaptor3d_CurveOnSurface& aCurveOnSurface)
{
Handle(Adaptor3d_Surface) aSurf = aCurveOnSurface.GetSurface();
Handle(Adaptor2d_Curve2d) aCurv2d = aCurveOnSurface.GetCurve();
const Handle(Adaptor3d_Surface)& aSurf = aCurveOnSurface.GetSurface();
const Handle(Adaptor2d_Curve2d)& aCurv2d = aCurveOnSurface.GetCurve();
Standard_Real aNbSKnots = 0, aNbC2dKnots = 0;
@ -1513,7 +1513,7 @@ Standard_Boolean BRepOffset_Inter2d::ExtentEdge(const TopoDS_Edge& E,TopoDS_Edge
//purpose :
//=======================================================================
static Standard_Boolean UpdateVertex(TopoDS_Vertex V,
static Standard_Boolean UpdateVertex(const TopoDS_Vertex& V,
TopoDS_Edge& OE,
TopoDS_Edge& NE,
Standard_Real TolConf)
@ -1960,7 +1960,7 @@ void BRepOffset_Inter2d::ConnexIntByIntInVert
TopExp_Explorer Exp1, Exp2;
Standard_Boolean bCoincide;
// intersect edges generated from vertex with the edges of the face
TopoDS_Shape NE3 = Build(Vref);
const TopoDS_Shape& NE3 = Build(Vref);
//
for (Exp2.Init(NE3, TopAbs_EDGE); Exp2.More(); Exp2.Next()) {
const TopoDS_Edge& aE3 = *(TopoDS_Edge*)&Exp2.Current();

View File

@ -544,7 +544,7 @@ static void FillContours(const TopoDS_Shape& aShape,
TopoDS_Wire aWire = TopoDS::Wire(itf.Value());
for (Wexp.Init(aWire, aFace); Wexp.More(); Wexp.Next())
{
TopoDS_Edge anEdge = Wexp.Current();
const TopoDS_Edge& anEdge = Wexp.Current();
if (BRep_Tool::Degenerated(anEdge))
continue;
const BRepOffset_ListOfInterval& Lint = Analyser.Type(anEdge);

View File

@ -181,10 +181,10 @@ static void UpdateEdge (const TopoDS_Edge& E,
//purpose : Particular case of Curve On Surface.
//=======================================================================
static void ComputeCurve3d(TopoDS_Edge Edge,
static void ComputeCurve3d(const TopoDS_Edge& Edge,
const Handle(Geom2d_Curve)& Curve,
const Handle(Geom_Surface)& Surf,
const TopLoc_Location Loc,
const TopLoc_Location& Loc,
Standard_Real Tol)
{
// try to find the particular case

View File

@ -3963,7 +3963,7 @@ TopoDS_Shape BRepOffset_Tool::Deboucle3D(const TopoDS_Shape& S,
//=======================================================================
static Standard_Boolean IsInOut (BRepTopAdaptor_FClass2d& FC,
Geom2dAdaptor_Curve AC,
const Geom2dAdaptor_Curve& AC,
const TopAbs_State& S )
{
Standard_Real Def = 100*Precision::Confusion();

View File

@ -384,7 +384,7 @@ void BRepOffsetAPI_DraftAngle::CorrectWires()
wit.Initialize( CurFace );
for (; wit.More(); wit.Next())
{
TopoDS_Shape aWire = wit.Value();
const TopoDS_Shape& aWire = wit.Value();
if (! aWire.IsSame( CurWire ))
{
TColgp_SequenceOfPnt pts;
@ -806,8 +806,8 @@ void BRepOffsetAPI_DraftAngle::CorrectWires()
TopTools_DataMapIteratorOfDataMapOfShapeShape itve (VEmap);
for (; itve.More (); itve.Next ())
{
TopoDS_Shape V = itve.Key ();
TopoDS_Shape E = itve.Value ();
const TopoDS_Shape& V = itve.Key ();
const TopoDS_Shape& E = itve.Value ();
TopoDS_Shape W;
for (i = 1; i <= Eseq.Length (); i++)
{
@ -915,7 +915,7 @@ void BRepOffsetAPI_DraftAngle::CorrectWires()
eit.Initialize (aWire, Standard_False);
for (; eit.More (); eit.Next ())
{
TopoDS_Shape anEdge = eit.Value ();
const TopoDS_Shape& anEdge = eit.Value ();
BB.Add (CurWire, anEdge);
}
if (aSub.IsCopied (CurFace))

View File

@ -417,7 +417,7 @@ void BRepOffsetAPI_ThruSections::Build(const Message_ProgressRange& /*theRange*/
Standard_Integer aSign = 1;
TopoDS_Vertex Vfirst, Vlast;
TopExp::Vertices(anEdge, Vfirst, Vlast);
TopTools_ListOfShape aNewEdges = Georges.GeneratedShapes(anEdge);
const TopTools_ListOfShape& aNewEdges = Georges.GeneratedShapes(anEdge);
TColStd_ListOfInteger IList;
aWorkingSection = TopoDS::Wire(WorkingSections(ii));
Standard_Integer NbNewEdges = aNewEdges.Extent();

View File

@ -184,7 +184,7 @@ BRepProj_Projection::BRepProj_Projection(const TopoDS_Shape& Wire,
// Note: it is necessary to create copy of wire to avoid adding new pcurves into it
Handle(BRepTools_TrsfModification) Trsf = new BRepTools_TrsfModification(T);
BRepTools_Modifier Modif (Wire, Trsf);
TopoDS_Shape WireBase = Modif.ModifiedShape(Wire);
const TopoDS_Shape& WireBase = Modif.ModifiedShape(Wire);
// Creation of a cylindrical surface
BRepSweep_Prism CylSurf (WireBase, Vsup, Standard_False);

View File

@ -1837,7 +1837,7 @@ static Standard_Integer arclinconvert (Draw_Interpretor& /*dout*/, Standard_Inte
std::cout<<"Error: failed to find a face for the wire "<<a[2]<<std::endl;
return 1; //TCL_ERROR
}
TopoDS_Face aFace = aFaceMaker.Face();
const TopoDS_Face& aFace = aFaceMaker.Face();
TopoDS_Iterator anIter (aFace);
TopoDS_Wire aWire = TopoDS::Wire (anIter.Value());
aResult = BRepAlgo::ConvertWire (aWire, aTol, aFace);

View File

@ -528,7 +528,7 @@ Handle(IGESData_IGESEntity) BRepToIGES_BRWire ::TransferWire
if ( TE.More()) {
BRepTools_WireExplorer WE;
for ( WE.Init(mywire); WE.More(); WE.Next()) {
TopoDS_Edge E = WE.Current();
const TopoDS_Edge& E = WE.Current();
if (E.IsNull()) {
AddWarning(mywire, "an Edge is a null entity");
}

View File

@ -134,7 +134,7 @@ void BRepToIGESBRep_Entity::TransferVertexList()
//=============================================================================
Standard_Integer BRepToIGESBRep_Entity::IndexVertex(const TopoDS_Vertex& myvertex) const
{
TopoDS_Shape V = myvertex;
const TopoDS_Shape& V = myvertex;
return myVertices.FindIndex(V);
}
@ -148,7 +148,7 @@ Standard_Integer BRepToIGESBRep_Entity::AddVertex(const TopoDS_Vertex& myvertex)
{
if ( myvertex.IsNull()) return 0;
TopoDS_Shape V = myvertex;
const TopoDS_Shape& V = myvertex;
Standard_Integer index = myVertices.FindIndex(V);
if (index == 0) {
index = myVertices.Add(V);
@ -214,7 +214,7 @@ void BRepToIGESBRep_Entity::TransferEdgeList()
//=============================================================================
Standard_Integer BRepToIGESBRep_Entity::IndexEdge(const TopoDS_Edge& myedge) const
{
TopoDS_Shape E = myedge;
const TopoDS_Shape& E = myedge;
return myEdges.FindIndex(E);
}
@ -229,7 +229,7 @@ Standard_Integer BRepToIGESBRep_Entity::AddEdge(const TopoDS_Edge& myedge,
{
if ( myedge.IsNull()) return 0;
TopoDS_Shape E = myedge;
const TopoDS_Shape& E = myedge;
Handle(IGESData_IGESEntity) C = mycurve3d;
Standard_Integer index = myEdges.FindIndex(E);
if (index == 0) {
@ -384,7 +384,7 @@ Handle(IGESSolid_Loop) BRepToIGESBRep_Entity::TransferWire (const TopoDS_Wire& m
TopExp_Explorer TE(mywire, TopAbs_VERTEX);
if ( TE.More()) {
for ( WE.Init(mywire,myface); WE.More(); WE.Next()) {
TopoDS_Edge E = WE.Current();
const TopoDS_Edge& E = WE.Current();
if (E.IsNull()) {
AddWarning(mywire, "an Edge is a null entity");
}

View File

@ -1300,7 +1300,7 @@ void BRepTools::DetectClosedness(const TopoDS_Face& theFace,
Standard_Real BRepTools::EvalAndUpdateTol(const TopoDS_Edge& theE,
const Handle(Geom_Curve)& C3d,
const Handle(Geom2d_Curve) C2d,
const Handle(Geom2d_Curve)& C2d,
const Handle(Geom_Surface)& S,
const Standard_Real f,
const Standard_Real l)

View File

@ -330,7 +330,7 @@ public:
//! Method returns actual tolerance of edge
Standard_EXPORT static Standard_Real EvalAndUpdateTol(const TopoDS_Edge& theE,
const Handle(Geom_Curve)& theC3d,
const Handle(Geom2d_Curve) theC2d,
const Handle(Geom2d_Curve)& theC2d,
const Handle(Geom_Surface)& theS,
const Standard_Real theF,
const Standard_Real theL);

View File

@ -462,7 +462,7 @@ TopoDS_Shape BRepTools_Quilt::Shells() const
// itm.More(); ) {
if(!M.IsBound(aexp.Current()))
continue;
TopoDS_Shape ae = aexp.Current();
const TopoDS_Shape& ae = aexp.Current();
TopoDS_Shape as = M.Find(ae);
if (as.IsSame(oldShell)) {
// update the orientation of free edges in SH.

View File

@ -388,7 +388,7 @@ TopoDS_Shape BRepTools_ReShape::Apply (const TopoDS_Shape& shape,
// apply recorded modifications to subshapes
Standard_Boolean isEmpty = Standard_True;
for ( TopoDS_Iterator it(shape,Standard_False); it.More(); it.Next() ) {
TopoDS_Shape sh = it.Value();
const TopoDS_Shape& sh = it.Value();
newsh = Apply ( sh, until );
if ( newsh != sh ) {
if ( myStatus & EncodeStatus(4)) //ShapeExtend::DecodeStatus ( myStatus, ShapeExtend_DONE4 ) )
@ -408,7 +408,7 @@ TopoDS_Shape BRepTools_ReShape::Apply (const TopoDS_Shape& shape,
}
Standard_Integer nitems = 0;
for ( TopoDS_Iterator subit(newsh); subit.More(); subit.Next(), nitems++ ) {
TopoDS_Shape subsh = subit.Value();
const TopoDS_Shape& subsh = subit.Value();
if ( subsh.ShapeType() == sh.ShapeType() ) B.Add ( result, subsh );//fix for SAMTECH bug OCC322 about abcense internal vertices after sewing.
else locStatus |= EncodeStatus(10);//ShapeExtend::EncodeStatus ( ShapeExtend_FAIL1 );
}

View File

@ -215,7 +215,7 @@ static Standard_Boolean IsInFace(const TopoDS_Edge& E,
//purpose :
//=======================================================================
static void KPartCurve3d(TopoDS_Edge Edge,
static void KPartCurve3d(const TopoDS_Edge& Edge,
Handle(Geom2d_Curve) Curve,
Handle(Geom_Surface) Surf)
{
@ -1420,12 +1420,12 @@ Standard_Integer BiTgte_Blend::NbBranches()
exp.Init(Shells,TopAbs_SHELL);
for (; exp.More(); exp.Next()) {
// CurS = the current Shell.
const TopoDS_Shape CurS = exp.Current();
const TopoDS_Shape& CurS = exp.Current();
TopExp_Explorer exp2(CurS, TopAbs_FACE);
for (; exp2.More(); exp2.Next()) {
// CurF = the current face of the current Shell.
const TopoDS_Shape CurF = exp2.Current();
const TopoDS_Shape& CurF = exp2.Current();
for ( i = 1; i <= NbFaces; i++) {
const TopoDS_Shape& Center = myCenters(i);

View File

@ -217,8 +217,8 @@ void Bisector_Inter::SinglePerform(const Handle(Geom2d_Curve)& CBis1,
const Standard_Real Tol,
const Standard_Boolean ComunElement)
{
Handle(Geom2d_Curve) Bis1 = CBis1;
Handle(Geom2d_Curve) Bis2 = CBis2;
const Handle(Geom2d_Curve)& Bis1 = CBis1;
const Handle(Geom2d_Curve)& Bis2 = CBis2;
Handle(Standard_Type) Type1 = Bis1->DynamicType();
Handle(Standard_Type) Type2 = Bis2->DynamicType();

View File

@ -620,7 +620,7 @@ TCollection_ExtendedString CDM_Document::Folder() const {
void CDM_Document::SetRequestedFolder(const TCollection_ExtendedString& aFolder)
{
TCollection_ExtendedString f(aFolder);
const TCollection_ExtendedString& f = aFolder;
if(f.Length() != 0) {
myRequestedFolderIsDefined=Standard_True;
myRequestedFolder=aFolder;
@ -975,8 +975,8 @@ void CDM_Document::RemoveFromReference(const Standard_Integer aReferenceIdentifi
//purpose :
//=======================================================================
TCollection_ExtendedString GetResource (const TCollection_ExtendedString aFormat,
const TCollection_ExtendedString anItem)
TCollection_ExtendedString GetResource (const TCollection_ExtendedString& aFormat,
const TCollection_ExtendedString& anItem)
{
TCollection_ExtendedString theResource;
theResource+= aFormat;

View File

@ -681,7 +681,7 @@ gp_Pnt ComputePoint(const TopoDS_Vertex& V,const TopoDS_Edge& E,
p = BRep_Tool::Pnt(v2);
}
GeomAdaptor_Curve cc = c.Curve();
const GeomAdaptor_Curve& cc = c.Curve();
if (p.Distance(c.Value(first)) <= Precision::Confusion()) {
GCPnts_AbscissaPoint computePoint(cc, D, first);
Param = computePoint.Parameter();

View File

@ -180,7 +180,7 @@ static Standard_Boolean IsRadiusIntersected(const Handle(Geom2d_Curve)& theCurve
if (gp_Vec2d(aPoint, theStart).IsOpposite(gp_Vec2d(aPoint, theEnd), Precision::Angular()))
return Standard_True;
}
Handle(Geom2d_Curve) aCurve = theCurve;
const Handle(Geom2d_Curve)& aCurve = theCurve;
for(a = anInter.NbSegments(); a > 0; a--)
{
//anInter.Segment(a, aCurve); //not implemented (bug in OCC)

View File

@ -274,8 +274,8 @@ Standard_Integer ChFi3d::ConcaveSide(const BRepAdaptor_Surface& S1,
Standard_Real par = 0.691254*first + 0.308746*last;
gp_Pnt pt, pt1, pt2; gp_Vec tgE, tgE1, tgE2, ns1, ns2, dint1, dint2;
TopoDS_Face F1 = S1.Face();
TopoDS_Face F2 = S2.Face();
const TopoDS_Face& F1 = S1.Face();
const TopoDS_Face& F2 = S2.Face();
//F1.Orientation(TopAbs_FORWARD);
//F2.Orientation(TopAbs_FORWARD);

View File

@ -426,7 +426,6 @@ void ChFi3d_Builder::Compute()
if (letype == TopAbs_SHELL){
TopExp_Explorer expsh2(its.Value(),TopAbs_SHELL);
const TopoDS_Shape& cursh = expsh2.Current();
TopoDS_Shape tt = cursh;
B1.Add(myShapeResult,cursh);
its.Next();
}

View File

@ -151,8 +151,8 @@ static TopoDS_Edge MakeOffsetEdge(const TopoDS_Edge& theEdge,
{
TopoDS_Edge OffsetEdge;
TopoDS_Face F1 = S1.Face();
TopoDS_Face F2 = S2.Face();
const TopoDS_Face& F1 = S1.Face();
const TopoDS_Face& F2 = S2.Face();
Handle(Geom_Surface) GS1 = BRep_Tool::Surface(F1);
Handle(Geom_Surface) TrGS1 =
new Geom_RectangularTrimmedSurface(GS1,

View File

@ -242,7 +242,7 @@ static Standard_Boolean IsObst(const ChFiDS_CommonPoint& CP,
//
//=======================================================================
static void CompParam(Geom2dAdaptor_Curve Carc,
static void CompParam(const Geom2dAdaptor_Curve& Carc,
Handle(Geom2d_Curve) Ctg,
Standard_Real& parc,
Standard_Real& ptg,
@ -330,8 +330,8 @@ static void CompParam(Geom2dAdaptor_Curve Carc,
static Standard_Boolean CompBlendPoint(const TopoDS_Vertex& V,
const TopoDS_Edge& E,
const Standard_Real W,
const TopoDS_Face F1,
const TopoDS_Face F2,
const TopoDS_Face& F1,
const TopoDS_Face& F2,
Blend_Point& BP)
{
gp_Pnt2d P1, P2;

View File

@ -484,8 +484,8 @@ static void CalculDroite(const gp_Pnt2d & p2d1,
//purpose : calcule a batten between curves 2d curv2d1 and curv2d2 at points p2d1 and p2d2
//=======================================================================
static void CalculBatten (const Handle (GeomAdaptor_Surface) ASurf,
const TopoDS_Face Face ,
static void CalculBatten (const Handle (GeomAdaptor_Surface)& ASurf,
const TopoDS_Face& Face ,
const Standard_Real xdir,
const Standard_Real ydir,
const gp_Pnt2d & p2d1,

View File

@ -539,7 +539,7 @@ static void FillSD (TopOpeBRepDS_DataStructure& DStr,
const Standard_Boolean isFirst,
const Standard_Integer ons,
const Standard_Real pitol,
const TopoDS_Vertex bout)
const TopoDS_Vertex& bout)
{
Standard_Integer opp = 3 - ons;

View File

@ -1134,17 +1134,17 @@ static Standard_Integer setFlags(Draw_Interpretor& ,
setProp(Sh, a, n);
for (ex.Init (Sh,TopAbs_VERTEX); ex.More(); ex.Next()) {
TopoDS_Shape S = ex.Current();
const TopoDS_Shape& S = ex.Current();
setProp(S, a, n);
}
for (ex.Init (Sh,TopAbs_EDGE); ex.More(); ex.Next()) {
TopoDS_Shape S = ex.Current();
const TopoDS_Shape& S = ex.Current();
setProp(S, a, n);
}
for (ex.Init (Sh,TopAbs_FACE); ex.More(); ex.Next()) {
TopoDS_Shape S = ex.Current();
const TopoDS_Shape& S = ex.Current();
setProp(S, a, n);
}

View File

@ -291,14 +291,14 @@ static Standard_Integer DDF_CheckAttrs (Draw_Interpretor& di,Standard_Integer n
// std::cout<<"\tSource Attribute dynamic type = "<<itr.Value()->DynamicType()<<std::endl;
const TDF_AttributeMap& attMap = ds1->Attributes(); //attMap
for (TDF_MapIteratorOfAttributeMap attMItr(attMap);attMItr.More(); attMItr.Next()) {
Handle(TDF_Attribute) sAtt = attMItr.Key();
const Handle(TDF_Attribute)& sAtt = attMItr.Key();
// std::cout<<"\t\tSource references attribute dynamic type = "<<sAtt->DynamicType()<<std::endl;
for (TDF_AttributeIterator itr2(TARGET); itr2.More(); itr2.Next()) {
itr2.Value()->References(ds2);
// std::cout<<"\t\t\tTARGET attribute dynamic type = "<<itr2.Value()->DynamicType()<<std::endl;
const TDF_AttributeMap& attMap2 = ds2->Attributes(); //attMap
for (TDF_MapIteratorOfAttributeMap attMItr2(attMap2);attMItr2.More(); attMItr2.Next()) {
Handle(TDF_Attribute) tAtt = attMItr2.Key();
const Handle(TDF_Attribute)& tAtt = attMItr2.Key();
// std::cout<<"\t\t\t\tTarget reference attribute dynamic type = "<<tAtt->DynamicType()<<std::endl;
if (tAtt->IsInstance(sAtt->DynamicType()))
if(tAtt == sAtt) {
@ -350,7 +350,7 @@ static Standard_Integer DDF_CheckLabel (Draw_Interpretor& di,Standard_Integer n
di<<"\tSource Attribute dynamic type = " << itr.Value()->DynamicType()->Name() << "\n";
const TDF_AttributeMap& attMap = ds1->Attributes(); //attMap
for (TDF_MapIteratorOfAttributeMap attMItr(attMap);attMItr.More(); attMItr.Next()) {
Handle(TDF_Attribute) sAtt = attMItr.Key();
const Handle(TDF_Attribute)& sAtt = attMItr.Key();
TCollection_AsciiString entry;
TDF_Tool::Entry(sAtt->Label(), entry);
//std::cout<<"\t\tReferences attribute dynamic type = "<<sAtt->DynamicType()<<",\tLabel = "<<entry<<std::endl;

View File

@ -3382,7 +3382,7 @@ static Standard_Integer DDataStd_GetNDIntegers (Draw_Interpretor& di,
const TColStd_DataMapOfStringInteger& aMap = anAtt->GetIntegersContainer();
TColStd_DataMapIteratorOfDataMapOfStringInteger itr(aMap);
for (; itr.More(); itr.Next()){
TCollection_ExtendedString aKey(itr.Key());
const TCollection_ExtendedString& aKey(itr.Key());
Standard_Integer aValue = itr.Value();
di << "Key = " << aKey << " Value = " << aValue << "\n";
}
@ -3500,7 +3500,7 @@ static Standard_Integer DDataStd_GetNDReals (Draw_Interpretor& di,
const TDataStd_DataMapOfStringReal& aMap = anAtt->GetRealsContainer();
TDataStd_DataMapIteratorOfDataMapOfStringReal itr(aMap);
for (; itr.More(); itr.Next()){
TCollection_ExtendedString aKey(itr.Key());
const TCollection_ExtendedString& aKey(itr.Key());
Standard_Real aValue = itr.Value();
di << "Key = " << aKey << " Value = " << aValue << "\n";
}
@ -3757,7 +3757,7 @@ static Standard_Integer DDataStd_GetNDBytes (Draw_Interpretor& di,
TDataStd_DataMapIteratorOfDataMapOfStringByte itr(aMap);
for (; itr.More(); itr.Next())
{
TCollection_ExtendedString aKey(itr.Key());
const TCollection_ExtendedString& aKey(itr.Key());
Standard_Byte aValue = itr.Value();
std::cout << "Key = " << aKey << " Value = " <<aValue<<std::endl;
}
@ -3882,9 +3882,9 @@ static Standard_Integer DDataStd_GetNDIntArrays (Draw_Interpretor& di,
const TDataStd_DataMapOfStringHArray1OfInteger& aMap = anAtt->GetArraysOfIntegersContainer();
TDataStd_DataMapIteratorOfDataMapOfStringHArray1OfInteger itr(aMap);
for (; itr.More(); itr.Next()){
TCollection_ExtendedString aKey(itr.Key());
const TCollection_ExtendedString& aKey(itr.Key());
std::cout << "Key = " << aKey<< std::endl;
Handle(TColStd_HArray1OfInteger) anArrValue = itr.Value();
const Handle(TColStd_HArray1OfInteger)& anArrValue = itr.Value();
if(!anArrValue.IsNull()) {
Standard_Integer lower = anArrValue->Lower();
Standard_Integer upper = anArrValue->Upper();
@ -4025,9 +4025,9 @@ static Standard_Integer DDataStd_GetNDRealArrays (Draw_Interpretor& di,
const TDataStd_DataMapOfStringHArray1OfReal& aMap = anAtt->GetArraysOfRealsContainer();
TDataStd_DataMapIteratorOfDataMapOfStringHArray1OfReal itr(aMap);
for (; itr.More(); itr.Next()){
TCollection_ExtendedString aKey(itr.Key());
const TCollection_ExtendedString& aKey(itr.Key());
std::cout << "Key = " << aKey << std::endl;
Handle(TColStd_HArray1OfReal) anArrValue = itr.Value();
const Handle(TColStd_HArray1OfReal)& anArrValue = itr.Value();
if(!anArrValue.IsNull()) {
Standard_Integer lower = anArrValue->Lower();
Standard_Integer upper = anArrValue->Upper();

View File

@ -155,7 +155,7 @@ static Standard_Integer DDocStd_fsdwrite(Draw_Interpretor& theDI,
StdObjMgt_TransientPersistentMap aMap;
for (Standard_Integer i = 1; i <= aShapes.Length(); ++i)
{
TopoDS_Shape aShape = aShapes.Value(i);
const TopoDS_Shape& aShape = aShapes.Value(i);
Handle(ShapePersistent_TopoDS::HShape) aPShape =
ShapePersistent_TopoDS::Translate(aShape, aMap, ShapePersistent_WithTriangle);

View File

@ -457,7 +457,7 @@ void DE_Wrapper::ChangePriority(const TCollection_AsciiString& theFormat,
const TCollection_AsciiString& aVendorName = aVendorIter.Key();
if (!theVendorPriority.Contains(aVendorName))
{
Handle(DE_ConfigurationNode) aNode = aVendorIter.Value();
const Handle(DE_ConfigurationNode)& aNode = aVendorIter.Value();
if (theToDisable)
{
aNode->SetEnabled(Standard_False);

View File

@ -263,13 +263,13 @@ static void LoadC0Edges(const TopoDS_Shape& S,
TopExp_Explorer anEx(S,TopAbs_EDGE); // mpv: new explorer iterator because we need keep edges order
for(;anEx.More();anEx.Next()) {
Standard_Boolean aC0 = Standard_False;
TopoDS_Shape anEdge1 = anEx.Current();
const TopoDS_Shape& anEdge1 = anEx.Current();
if (edgeNaborFaces.IsBound(anEdge1)) {
const TopTools_ListOfShape& aList1 = edgeNaborFaces.Find(anEdge1);
if (aList1.Extent()<2) continue; // mpv (06.09.2002): these edges already was loaded
TopTools_DataMapIteratorOfDataMapOfShapeListOfShape itr(edgeNaborFaces);
for (; itr.More(); itr.Next()) {
TopoDS_Shape anEdge2 = itr.Key();
const TopoDS_Shape& anEdge2 = itr.Key();
if(anEdgesToDelete.Contains(anEdge2)) continue;
if (anEdge1.IsSame(anEdge2)) continue;
const TopTools_ListOfShape& aList2 = itr.Value();
@ -875,7 +875,6 @@ Standard_Boolean DNaming::ComputeSweepDir (const TopoDS_Shape& theShape,
gp_Ax1& theAxis)
{
// Find surface
TopLoc_Location aLocation = theShape.Location();
Handle(Geom_Plane) aPlane;
if (theShape.ShapeType() == TopAbs_FACE) {

View File

@ -451,7 +451,7 @@ void FindSPErrorEdges(const TopoDS_Shape& theShape,
TopExp_Explorer anExpE(theShape, TopAbs_EDGE);
for(; anExpE.More(); anExpE.Next()) {
Handle(BRepCheck_Result) aResult = theAnalyzer.Result(anExpE.Current());
const Handle(BRepCheck_Result)& aResult = theAnalyzer.Result(anExpE.Current());
if(aResult.IsNull() || theMap.Contains(anExpE.Current()))
continue;
@ -474,7 +474,7 @@ void FindSPErrorEdges(const TopoDS_Shape& theShape,
}
}
else if(theShape.ShapeType() == TopAbs_EDGE) {
Handle(BRepCheck_Result) aResult = theAnalyzer.Result(theShape);
const Handle(BRepCheck_Result)& aResult = theAnalyzer.Result(theShape);
itl.Initialize(aResult->Status());
for(; itl.More(); itl.Next()) {
@ -503,7 +503,7 @@ Standard_Boolean FindOtherErrors(const TopoDS_Shape& theShape,
if(FindOtherErrors(anIt.Value(), theAnalyzer, theMap))
return Standard_True;
}
Handle(BRepCheck_Result) aResult = theAnalyzer.Result(theShape);
const Handle(BRepCheck_Result)& aResult = theAnalyzer.Result(theShape);
if (!aResult.IsNull()) {
@ -518,7 +518,7 @@ Standard_Boolean FindOtherErrors(const TopoDS_Shape& theShape,
TopExp_Explorer anExpE(anExpF.Current(), TopAbs_EDGE);
for(; anExpE.More(); anExpE.Next()) {
Handle(BRepCheck_Result) aResultE = theAnalyzer.Result(anExpE.Current());
const Handle(BRepCheck_Result)& aResultE = theAnalyzer.Result(anExpE.Current());
if(aResultE.IsNull())
continue;

View File

@ -1672,7 +1672,7 @@ static Standard_Boolean MakeSelection (const Handle(TDataStd_UAttribute)& Obj,
if(aNode.IsNull())
aNode = TDataStd_TreeNode::Set(Obj->Label());
aNode->Remove();
Handle(TDataStd_UAttribute) aContainer = ContextObj;
const Handle(TDataStd_UAttribute)& aContainer = ContextObj;
if(aContainer->Label().FindAttribute(TDataStd_TreeNode::GetDefaultTreeID(), RNode))
RNode->Append(aNode);
TDataStd_Name::Set(Obj->Label(), "Auxiliary_Object");

View File

@ -150,7 +150,7 @@ Standard_Boolean FillValidMap(const TDF_Label& theLabel, TDF_LabelMap& theValidM
#endif
TDF_Tool::OutReferences(aLabel,anExtMap);
for (TDF_MapIteratorOfAttributeMap attMItr(anExtMap);attMItr.More(); attMItr.Next()) {
Handle(TDF_Attribute) att = attMItr.Key();
const Handle(TDF_Attribute)& att = attMItr.Key();
#ifdef OCCT_DEBUG_SELN
TDF_Tool::Entry(att->Label(), entr1);
std::cout<<"## References attribute dynamic type = "<<att->DynamicType()<<" at Label = "<<entr1 <<std::endl;

View File

@ -122,7 +122,7 @@ static Standard_Integer DNaming_TCopyShape (Draw_Interpretor& di,
DNaming_DataMapIteratorOfDataMapOfShapeOfName itrn(aDMapOfShapeOfName);
for(;itrn.More();itrn.Next()) {
TCollection_AsciiString name = itrn.Value();
const TCollection_AsciiString& name = itrn.Value();
const TopoDS_Shape Result = TR.Copied(itrn.Key());
DBRep::Set(name.ToCString(), Result);
di.AppendElement(name.ToCString());

View File

@ -1066,7 +1066,7 @@ void Draft_Modification::Perform ()
{
for (i = 1; i <= i2s.NbLines(); i++)
{
Handle( Geom_Curve ) aCurve = i2s.Line(i);
const Handle( Geom_Curve )& aCurve = i2s.Line(i);
gp_Pnt Pnt = aCurve->Value( aCurve->FirstParameter() );
GeomAPI_ProjectPointOnSurf projector( Pnt, S1, Precision::Confusion() );
Standard_Real U, V;

View File

@ -115,7 +115,7 @@ static void resolveKeys (Draw_MapOfAsciiString& theMap,
for (Standard_Integer j = 1; j <= aMapExtent; ++j)
{
TCollection_AsciiString aValue;
const TCollection_AsciiString aResource = theMap.FindKey (j);
const TCollection_AsciiString& aResource = theMap.FindKey (j);
if (theResMgr->Find (aResource, aValue))
{
#ifdef OCCT_DEBUG
@ -204,7 +204,7 @@ static Standard_Integer Pload (Draw_Interpretor& theDI,
const Standard_Integer aMapExtent = aMap.Extent();
for (Standard_Integer aResIter = 1; aResIter <= aMapExtent; ++aResIter)
{
const TCollection_AsciiString aResource = aMap.FindKey (aResIter);
const TCollection_AsciiString& aResource = aMap.FindKey (aResIter);
#ifdef OCCT_DEBUG
std::cout << "aResource = " << aResource << std::endl;
#endif

View File

@ -60,9 +60,9 @@ Geom2dGcc_Circ2d2TanOn::
GeomAbs_CurveType Type1 = C1.GetType();
GeomAbs_CurveType Type2 = C2.GetType();
GeomAbs_CurveType Type3 = OnCurve.GetType();
Handle(Geom2d_Curve) CC1 = C1.Curve();
Handle(Geom2d_Curve) CC2 = C2.Curve();
Handle(Geom2d_Curve) Con = OnCurve.Curve();
const Handle(Geom2d_Curve)& CC1 = C1.Curve();
const Handle(Geom2d_Curve)& CC2 = C2.Curve();
const Handle(Geom2d_Curve)& Con = OnCurve.Curve();
//=============================================================================
// Appel a GccAna. +
@ -392,8 +392,8 @@ Geom2dGcc_Circ2d2TanOn::
Geom2dAdaptor_Curve C1 = Qualified1.Qualified();
GeomAbs_CurveType Type1 = C1.GetType();
GeomAbs_CurveType Type3 = OnCurve.GetType();
Handle(Geom2d_Curve) CC1 = C1.Curve();
Handle(Geom2d_Curve) Con = OnCurve.Curve();
const Handle(Geom2d_Curve)& CC1 = C1.Curve();
const Handle(Geom2d_Curve)& Con = OnCurve.Curve();
//=============================================================================
// Appel a GccAna. +
@ -581,7 +581,7 @@ Geom2dGcc_Circ2d2TanOn::
parcen3(1,8)
{
GeomAbs_CurveType Type3 = OnCurve.GetType();
Handle(Geom2d_Curve) Con = OnCurve.Curve();
const Handle(Geom2d_Curve)& Con = OnCurve.Curve();
//=============================================================================
// Appel a GccAna. +

View File

@ -70,8 +70,8 @@ Geom2dGcc_Circ2d2TanRad::
else {
Geom2dAdaptor_Curve C1 = Qualified1.Qualified();
Geom2dAdaptor_Curve C2 = Qualified2.Qualified();
Handle(Geom2d_Curve) CC1 = C1.Curve();
Handle(Geom2d_Curve) CC2 = C2.Curve();
const Handle(Geom2d_Curve)& CC1 = C1.Curve();
const Handle(Geom2d_Curve)& CC2 = C2.Curve();
GeomAbs_CurveType Type1 = C1.GetType();
GeomAbs_CurveType Type2 = C2.GetType();
@ -276,7 +276,7 @@ Geom2dGcc_Circ2d2TanRad::
if (Radius < 0.) { throw Standard_NegativeValue(); }
else {
Geom2dAdaptor_Curve C1 = Qualified1.Qualified();
Handle(Geom2d_Curve) CC1 = C1.Curve();
const Handle(Geom2d_Curve)& CC1 = C1.Curve();
GeomAbs_CurveType Type1 = C1.GetType();
//=============================================================================

View File

@ -58,9 +58,9 @@ Geom2dGcc_Circ2d3Tan::
Geom2dAdaptor_Curve C1 = Qualified1.Qualified();
Geom2dAdaptor_Curve C2 = Qualified2.Qualified();
Geom2dAdaptor_Curve C3 = Qualified3.Qualified();
Handle(Geom2d_Curve) CC1 = C1.Curve();
Handle(Geom2d_Curve) CC2 = C2.Curve();
Handle(Geom2d_Curve) CC3 = C3.Curve();
const Handle(Geom2d_Curve)& CC1 = C1.Curve();
const Handle(Geom2d_Curve)& CC2 = C2.Curve();
const Handle(Geom2d_Curve)& CC3 = C3.Curve();
GeomAbs_CurveType Type1 = C1.GetType();
GeomAbs_CurveType Type2 = C2.GetType();
GeomAbs_CurveType Type3 = C3.GetType();
@ -266,8 +266,8 @@ Geom2dGcc_Circ2d3Tan::
{
Geom2dAdaptor_Curve C1 = Qualified1.Qualified();
Geom2dAdaptor_Curve C2 = Qualified2.Qualified();
Handle(Geom2d_Curve) CC1 = C1.Curve();
Handle(Geom2d_Curve) CC2 = C2.Curve();
const Handle(Geom2d_Curve)& CC1 = C1.Curve();
const Handle(Geom2d_Curve)& CC2 = C2.Curve();
GeomAbs_CurveType Type1 = C1.GetType();
GeomAbs_CurveType Type2 = C2.GetType();
@ -383,7 +383,7 @@ Geom2dGcc_Circ2d3Tan::
pararg3(1,16)
{
Geom2dAdaptor_Curve C1 = Qualified1.Qualified();
Handle(Geom2d_Curve) CC1 = C1.Curve();
const Handle(Geom2d_Curve)& CC1 = C1.Curve();
GeomAbs_CurveType Type1 = C1.GetType();
//=============================================================================

View File

@ -42,7 +42,7 @@ Geom2dGcc_Circ2dTanCen::
pararg1(1,2)
{
Geom2dAdaptor_Curve C1 = Qualified1.Qualified();
Handle(Geom2d_Curve) CC1 = C1.Curve();
const Handle(Geom2d_Curve)& CC1 = C1.Curve();
GeomAbs_CurveType Type1 = C1.GetType();
//=============================================================================

View File

@ -53,8 +53,8 @@ Geom2dGcc_Circ2dTanOnRad::
Geom2dAdaptor_Curve C1 = Qualified1.Qualified();
GeomAbs_CurveType Type1 = C1.GetType();
GeomAbs_CurveType Type2 = OnCurve.GetType();
Handle(Geom2d_Curve) CC1 = C1.Curve();
Handle(Geom2d_Curve) Con = OnCurve.Curve();
const Handle(Geom2d_Curve)& CC1 = C1.Curve();
const Handle(Geom2d_Curve)& Con = OnCurve.Curve();
//=============================================================================
// Appel a GccAna. +
@ -163,7 +163,7 @@ Geom2dGcc_Circ2dTanOnRad::
else {
gp_Pnt2d point1(Point1->Pnt2d());
GeomAbs_CurveType Type2 = OnCurve.GetType();
Handle(Geom2d_Curve) Con = OnCurve.Curve();
const Handle(Geom2d_Curve)& Con = OnCurve.Curve();
//=============================================================================
// Appel a GccAna. +

View File

@ -46,8 +46,8 @@ Geom2dGcc_Lin2d2Tan::
{
Geom2dAdaptor_Curve C1 = Qualified1.Qualified();
Geom2dAdaptor_Curve C2 = Qualified2.Qualified();
Handle(Geom2d_Curve) CC1 = C1.Curve();
Handle(Geom2d_Curve) CC2 = C2.Curve();
const Handle(Geom2d_Curve)& CC1 = C1.Curve();
const Handle(Geom2d_Curve)& CC2 = C2.Curve();
GeomAbs_CurveType Type1 = C1.GetType();
GeomAbs_CurveType Type2 = C2.GetType();
@ -127,7 +127,7 @@ Geom2dGcc_Lin2d2Tan::
pararg2(1,2)
{
Geom2dAdaptor_Curve C1 = Qualified1.Qualified();
Handle(Geom2d_Curve) CC1 = C1.Curve();
const Handle(Geom2d_Curve)& CC1 = C1.Curve();
GeomAbs_CurveType Type1 = C1.GetType();
//=============================================================================
@ -196,8 +196,8 @@ Geom2dGcc_Lin2d2Tan::
{
Geom2dAdaptor_Curve C1 = Qualified1.Qualified();
Geom2dAdaptor_Curve C2 = Qualified2.Qualified();
Handle(Geom2d_Curve) CC1 = C1.Curve();
Handle(Geom2d_Curve) CC2 = C2.Curve();
const Handle(Geom2d_Curve)& CC1 = C1.Curve();
const Handle(Geom2d_Curve)& CC2 = C2.Curve();
GeomAbs_CurveType Type1 = C1.GetType();
GeomAbs_CurveType Type2 = C2.GetType();
@ -260,7 +260,7 @@ Geom2dGcc_Lin2d2Tan::
pararg2(1,2)
{
Geom2dAdaptor_Curve C1 = Qualified1.Qualified();
Handle(Geom2d_Curve) CC1 = C1.Curve();
const Handle(Geom2d_Curve)& CC1 = C1.Curve();
GeomAbs_CurveType Type1 = C1.GetType();
//=============================================================================

View File

@ -45,7 +45,7 @@ Geom2dGcc_Lin2dTanObl::
pararg2(1,2)
{
Geom2dAdaptor_Curve C1 = Qualified1.Qualified();
Handle(Geom2d_Curve) CC1 = C1.Curve();
const Handle(Geom2d_Curve)& CC1 = C1.Curve();
GeomAbs_CurveType Type1 = C1.GetType();
//=============================================================================
@ -111,7 +111,7 @@ Geom2dGcc_Lin2dTanObl::
pararg2(1,2)
{
Geom2dAdaptor_Curve C1 = Qualified1.Qualified();
Handle(Geom2d_Curve) CC1 = C1.Curve();
const Handle(Geom2d_Curve)& CC1 = C1.Curve();
GeomAbs_CurveType Type1 = C1.GetType();
//=============================================================================

View File

@ -558,7 +558,7 @@ Handle(Geom_Surface) GeomConvert_SurfToAnaSurf::TryTorusSphere(const Handle(Geom
Standard_Real GeomConvert_SurfToAnaSurf::ComputeGap(const Handle(Geom_Surface)& theSurf,
const Standard_Real theU1, const Standard_Real theU2, const Standard_Real theV1, const Standard_Real theV2,
const Handle(Geom_Surface) theNewSurf, const Standard_Real theTol)
const Handle(Geom_Surface)& theNewSurf, const Standard_Real theTol)
{
GeomAdaptor_Surface aGAS(theNewSurf);
GeomAbs_SurfaceType aSType = aGAS.GetType();

View File

@ -115,7 +115,7 @@ private:
static Standard_Real ComputeGap(const Handle(Geom_Surface)& theSurf,
const Standard_Real theU1, const Standard_Real theU2, const Standard_Real theV1, const Standard_Real theV2,
const Handle(Geom_Surface) theNewSurf, const Standard_Real theTol = RealLast());
const Handle(Geom_Surface)& theNewSurf, const Standard_Real theTol = RealLast());

View File

@ -87,7 +87,7 @@ static Standard_Boolean CheckSense(const TColGeom_SequenceOfCurve& Seq1,
Standard_Boolean no_sing = Standard_True;
Seq2.Clear();
Handle(Geom_Curve) C1 = Seq1.Value(1);
const Handle(Geom_Curve)& C1 = Seq1.Value(1);
Standard_Real f = C1->FirstParameter(), l = C1->LastParameter();
Standard_Integer iP, NP = 21;
TColgp_Array1OfPnt Tab(1,NP);
@ -125,7 +125,7 @@ static Standard_Boolean CheckSense(const TColGeom_SequenceOfCurve& Seq1,
for (Standard_Integer iseq=2; iseq<=Seq1.Length(); iseq++) {
// discretisation de C2
Handle(Geom_Curve) C2 = Seq1.Value(iseq);
const Handle(Geom_Curve)& C2 = Seq1.Value(iseq);
f = C2->FirstParameter();
l = C2->LastParameter();
u = f;

View File

@ -2816,7 +2816,7 @@ static Standard_Boolean CompareWeightPoles(const TColgp_Array1OfPnt& thePoles1,
//function : isIsoLine
//purpose :
//=============================================================================
Standard_Boolean GeomLib::isIsoLine (const Handle(Adaptor2d_Curve2d) theC2D,
Standard_Boolean GeomLib::isIsoLine (const Handle(Adaptor2d_Curve2d)& theC2D,
Standard_Boolean& theIsU,
Standard_Real& theParam,
Standard_Boolean& theIsForward)
@ -2896,8 +2896,8 @@ Standard_Boolean GeomLib::isIsoLine (const Handle(Adaptor2d_Curve2d) theC2D,
//function : buildC3dOnIsoLine
//purpose :
//=============================================================================
Handle(Geom_Curve) GeomLib::buildC3dOnIsoLine (const Handle(Adaptor2d_Curve2d) theC2D,
const Handle(Adaptor3d_Surface) theSurf,
Handle(Geom_Curve) GeomLib::buildC3dOnIsoLine (const Handle(Adaptor2d_Curve2d)& theC2D,
const Handle(Adaptor3d_Surface)& theSurf,
const Standard_Real theFirst,
const Standard_Real theLast,
const Standard_Real theTolerance,

View File

@ -239,7 +239,7 @@ public:
//! @param theParam Line parameter.
//! @param theIsForward Flag indicating forward parameterization on a isoline.
//! @return Standard_True when 2d curve is a line and Standard_False otherwise.
Standard_EXPORT static Standard_Boolean isIsoLine (const Handle(Adaptor2d_Curve2d) theC2D,
Standard_EXPORT static Standard_Boolean isIsoLine (const Handle(Adaptor2d_Curve2d)& theC2D,
Standard_Boolean& theIsU,
Standard_Real& theParam,
Standard_Boolean& theIsForward);
@ -251,8 +251,8 @@ public:
//! @param theParam Line parameter.
//! @param theIsForward Flag indicating forward parameterization on a isoline.
//! @return Standard_True when 3d curve is built and Standard_False otherwise.
Standard_EXPORT static Handle(Geom_Curve) buildC3dOnIsoLine (const Handle(Adaptor2d_Curve2d) theC2D,
const Handle(Adaptor3d_Surface) theSurf,
Standard_EXPORT static Handle(Geom_Curve) buildC3dOnIsoLine (const Handle(Adaptor2d_Curve2d)& theC2D,
const Handle(Adaptor3d_Surface)& theSurf,
const Standard_Real theFirst,
const Standard_Real theLast,
const Standard_Real theTolerance,

View File

@ -49,7 +49,7 @@ GeomToStep_MakeRectangularTrimmedSurface::
done = Standard_False;
return;
}
Handle(StepGeom_Surface) StepSurf = mkSurf.Value();
const Handle(StepGeom_Surface)& StepSurf = mkSurf.Value();
Standard_Real U1,U2,V1,V2;
RTSurf->Bounds(U1, U2, V1, V2);

View File

@ -363,7 +363,7 @@ static Standard_Integer surfapp(Draw_Interpretor& di, Standard_Integer n, const
if (anApprox.IsDone())
{
Handle(Geom_BSplineSurface) S = anApprox.Surface();
const Handle(Geom_BSplineSurface)& S = anApprox.Surface();
DrawTrSurf::Set(a[1], S);
di << a[1];
}
@ -445,7 +445,7 @@ static Standard_Integer surfint(Draw_Interpretor& di, Standard_Integer n, const
}
if (anApprox.IsDone())
{
Handle(Geom_BSplineSurface) S = anApprox.Surface();
const Handle(Geom_BSplineSurface)& S = anApprox.Surface();
DrawTrSurf::Set(a[1], S);
di << a[1];
}

View File

@ -543,7 +543,7 @@ static Standard_Integer interpol (Draw_Interpretor& di,Standard_Integer n, const
1.0e-5) ;
anInterpolator.Perform() ;
if (anInterpolator.IsDone()) {
Handle(Geom_BSplineCurve) C =
const Handle(Geom_BSplineCurve)& C =
anInterpolator.Curve();
DrawTrSurf::Set(a[1], C);
}
@ -560,7 +560,7 @@ static Standard_Integer interpol (Draw_Interpretor& di,Standard_Integer n, const
1.0e-5);
a2dInterpolator.Perform() ;
if (a2dInterpolator.IsDone()) {
Handle(Geom2d_BSplineCurve) C = a2dInterpolator.Curve() ;
const Handle(Geom2d_BSplineCurve)& C = a2dInterpolator.Curve() ;
DrawTrSurf::Set(a[1], C);
}
}

View File

@ -349,7 +349,7 @@ void Graphic3d_CView::SetComputedMode (const Standard_Boolean theMode)
for (Graphic3d_MapOfStructure::Iterator aDispStructIter (myStructsDisplayed); aDispStructIter.More(); aDispStructIter.Next())
{
Handle(Graphic3d_Structure) aStruct = aDispStructIter.Key();
const Handle(Graphic3d_Structure)& aStruct = aDispStructIter.Key();
const Graphic3d_TypeOfAnswer anAnswer = acceptDisplay (aStruct->Visual());
if (anAnswer != Graphic3d_TOA_COMPUTE)
{

View File

@ -54,7 +54,7 @@ Graphic3d_CubeMapOrder::Graphic3d_CubeMapOrder (unsigned char thePosXLocation,
// function : Graphic3d_CubeMapOrder
// purpose :
// =======================================================================
Graphic3d_CubeMapOrder::Graphic3d_CubeMapOrder (const Graphic3d_ValidatedCubeMapOrder theOrder)
Graphic3d_CubeMapOrder::Graphic3d_CubeMapOrder (const Graphic3d_ValidatedCubeMapOrder& theOrder)
:
myConvolution (theOrder.Order.myConvolution),
myHasOverflows (theOrder.Order.myHasOverflows)
@ -135,7 +135,7 @@ Graphic3d_CubeMapOrder& Graphic3d_CubeMapOrder::SetDefault()
// function : Permute
// purpose :
// =======================================================================
Graphic3d_CubeMapOrder& Graphic3d_CubeMapOrder::Permute (Graphic3d_ValidatedCubeMapOrder thePermutation)
Graphic3d_CubeMapOrder& Graphic3d_CubeMapOrder::Permute (const Graphic3d_ValidatedCubeMapOrder& thePermutation)
{
for (unsigned char i = 0; i < 6; ++i)
{
@ -149,7 +149,7 @@ Graphic3d_CubeMapOrder& Graphic3d_CubeMapOrder::Permute (Graphic3d_ValidatedCube
// function : Permuted
// purpose :
// =======================================================================
Graphic3d_CubeMapOrder Graphic3d_CubeMapOrder::Permuted (Graphic3d_ValidatedCubeMapOrder thePermutation) const
Graphic3d_CubeMapOrder Graphic3d_CubeMapOrder::Permuted (const Graphic3d_ValidatedCubeMapOrder& thePermutation) const
{
Graphic3d_CubeMapOrder anOrder = *this;
anOrder.Permute (thePermutation);

View File

@ -42,7 +42,7 @@ public:
unsigned char theNegZLocation);
//! Creates Graphic3d_CubeMapOrder using Graphic3d_ValidatedCubeMapOrder.
Standard_EXPORT Graphic3d_CubeMapOrder (const Graphic3d_ValidatedCubeMapOrder theOrder);
Standard_EXPORT Graphic3d_CubeMapOrder (const Graphic3d_ValidatedCubeMapOrder& theOrder);
//! Alias of 'operator='.
Standard_EXPORT Graphic3d_CubeMapOrder& Set (const Graphic3d_CubeMapOrder& theOrder);
@ -61,10 +61,10 @@ public:
Standard_EXPORT Graphic3d_CubeMapOrder& SetDefault();
//! Applies another cubemap order as permutation for the current one.
Standard_EXPORT Graphic3d_CubeMapOrder& Permute (Graphic3d_ValidatedCubeMapOrder anOrder);
Standard_EXPORT Graphic3d_CubeMapOrder& Permute (const Graphic3d_ValidatedCubeMapOrder& anOrder);
//! Returns permuted by other cubemap order copy of current one.
Standard_EXPORT Graphic3d_CubeMapOrder Permuted (Graphic3d_ValidatedCubeMapOrder anOrder) const;
Standard_EXPORT Graphic3d_CubeMapOrder Permuted (const Graphic3d_ValidatedCubeMapOrder& anOrder) const;
//! Swaps values of two cubemap sides.
Standard_EXPORT Graphic3d_CubeMapOrder& Swap (Graphic3d_CubeMapSide theFirstSide,

View File

@ -24,7 +24,7 @@ IMPLEMENT_STANDARD_RTTIEXT(Graphic3d_CubeMapPacked, Graphic3d_CubeMap)
// purpose :
// =======================================================================
Graphic3d_CubeMapPacked::Graphic3d_CubeMapPacked (const TCollection_AsciiString& theFilePath,
const Graphic3d_ValidatedCubeMapOrder theOrder)
const Graphic3d_ValidatedCubeMapOrder& theOrder)
:
Graphic3d_CubeMap (theFilePath),
myOrder (theOrder),
@ -36,7 +36,7 @@ Graphic3d_CubeMapPacked::Graphic3d_CubeMapPacked (const TCollection_AsciiString&
// purpose :
// =======================================================================
Graphic3d_CubeMapPacked::Graphic3d_CubeMapPacked (const Handle(Image_PixMap)& theImage,
const Graphic3d_ValidatedCubeMapOrder theOrder)
const Graphic3d_ValidatedCubeMapOrder& theOrder)
:
Graphic3d_CubeMap (Handle(Image_PixMap)()),
myOrder (theOrder),

View File

@ -29,13 +29,13 @@ public:
//! @theFileName - path to the cubemap image
//! @theOrder - array containing six different indexes of cubemap sides which maps tile grid to cubemap sides
Standard_EXPORT Graphic3d_CubeMapPacked (const TCollection_AsciiString& theFileName,
const Graphic3d_ValidatedCubeMapOrder theOrder = Graphic3d_CubeMapOrder::Default());
const Graphic3d_ValidatedCubeMapOrder& theOrder = Graphic3d_CubeMapOrder::Default());
//! Initialization to set cubemap directly by PixMap.
//! @thePixMap - origin PixMap
//! @theOrder - array containing six different indexes of cubemap sides which maps tile grid to cubemap sides
Standard_EXPORT Graphic3d_CubeMapPacked (const Handle(Image_PixMap)& theImage,
const Graphic3d_ValidatedCubeMapOrder theOrder = Graphic3d_CubeMapOrder::Default());
const Graphic3d_ValidatedCubeMapOrder& theOrder = Graphic3d_CubeMapOrder::Default());
//! Returns current cubemap side as compressed PixMap.
Standard_EXPORT virtual Handle(Image_CompressedPixMap) CompressedValue (const Handle(Image_SupportedFormats)& theSupported) Standard_OVERRIDE;

View File

@ -137,7 +137,7 @@ Handle(Graphic3d_Structure) Graphic3d_StructureManager::Identification (const St
Handle(Graphic3d_Structure) SGfound;
for (; it.More() && notfound; it.Next()) {
Handle(Graphic3d_Structure) SG = it.Key();
const Handle(Graphic3d_Structure)& SG = it.Key();
if ( SG->Identification () == AId) {
notfound = Standard_False;
SGfound = SG;
@ -165,7 +165,6 @@ void Graphic3d_StructureManager::RecomputeStructures()
NCollection_Map<Graphic3d_Structure*> aStructNetwork;
for (Graphic3d_MapIteratorOfMapOfStructure anIter(myDisplayedStructure); anIter.More(); anIter.Next())
{
Handle(Graphic3d_Structure) aStructure = anIter.Key();
anIter.Key()->Network (anIter.Key().get(), Graphic3d_TOC_DESCENDANT, aStructNetwork);
}

View File

@ -18,9 +18,11 @@
#include <gp_XYZ.hxx>
#include <Standard_Dump.hxx>
#include <cmath>
Standard_ShortReal Graphic3d_Vertex::Distance(const Graphic3d_Vertex& AOther) const
{
return sqrt( (X() - AOther.X()) * (X() - AOther.X())
return std::sqrt( (X() - AOther.X()) * (X() - AOther.X())
+ (Y() - AOther.Y()) * (Y() - AOther.Y())
+ (Z() - AOther.Z()) * (Z() - AOther.Z()) );
}

View File

@ -64,7 +64,7 @@ IFGraph_Articulations::IFGraph_Articulations
for (Interface_EntityIterator iter = thegraph.Shareds(thegraph.Entity(num));
iter.More(); iter.Next()) {
Handle(Standard_Transient) ent = iter.Value();
const Handle(Standard_Transient)& ent = iter.Value();
Standard_Integer nument = thegraph.EntityNumber(ent);
if (!thegraph.IsPresent(num)) {
thegraph.GetFromEntity(ent,Standard_False);

Some files were not shown because too many files have changed in this diff Show More