mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0023964: Extrema_ExtXX::Point methods might return constant reference instead of copy
Changed definitions of Point() functions Removal of floating point exceptions from previous commit
This commit is contained in:
parent
295cb05393
commit
5d99f2c887
@ -138,6 +138,7 @@ is
|
||||
is static;
|
||||
|
||||
Point (me; N: Integer) returns POnCurv
|
||||
---C++: return const &
|
||||
---Purpose: Returns the point of the Nth extremum distance.
|
||||
raises NotDone from StdFail,
|
||||
-- if IsDone(me)=False.
|
||||
|
@ -444,7 +444,7 @@ Standard_Boolean Extrema_ExtPElC::IsMin (const Standard_Integer N) const
|
||||
}
|
||||
//=============================================================================
|
||||
|
||||
Extrema_POnCurv Extrema_ExtPElC::Point (const Standard_Integer N) const
|
||||
const Extrema_POnCurv& Extrema_ExtPElC::Point (const Standard_Integer N) const
|
||||
{
|
||||
if ((N < 1) || (N > NbExt())) { Standard_OutOfRange::Raise(); }
|
||||
return myPoint[N-1];
|
||||
|
@ -142,6 +142,7 @@ is
|
||||
is static;
|
||||
|
||||
Point (me; N: Integer) returns POnCurv2d
|
||||
---C++: return const &
|
||||
---Purpose: Returns the point of the Nth extremum distance.
|
||||
raises NotDone from StdFail,
|
||||
-- if IsDone(me)=False.
|
||||
|
@ -328,7 +328,7 @@ Standard_Boolean Extrema_ExtPElC2d::IsMin (const Standard_Integer N) const
|
||||
}
|
||||
//=============================================================================
|
||||
|
||||
Extrema_POnCurv2d Extrema_ExtPElC2d::Point (const Standard_Integer N) const
|
||||
const Extrema_POnCurv2d& Extrema_ExtPElC2d::Point (const Standard_Integer N) const
|
||||
{
|
||||
if ((N < 1) || (N > NbExt())) { Standard_OutOfRange::Raise(); }
|
||||
return myPoint[N-1];
|
||||
|
@ -101,6 +101,7 @@ is
|
||||
is static;
|
||||
|
||||
Point (me; N: Integer) returns POnSurf
|
||||
---C++: return const &
|
||||
---Purpose: Returns the point of the Nth resulting distance.
|
||||
raises NotDone from StdFail,
|
||||
-- if IsDone(me)=False.
|
||||
|
@ -408,7 +408,7 @@ Standard_Real Extrema_ExtPElS::SquareDistance (const Standard_Integer N) const
|
||||
}
|
||||
//=============================================================================
|
||||
|
||||
Extrema_POnSurf Extrema_ExtPElS::Point (const Standard_Integer N) const
|
||||
const Extrema_POnSurf& Extrema_ExtPElS::Point (const Standard_Integer N) const
|
||||
{
|
||||
if (!IsDone()) { StdFail_NotDone::Raise(); }
|
||||
if ((N < 1) || (N > myNbExt)) { Standard_OutOfRange::Raise(); }
|
||||
|
@ -88,6 +88,7 @@ is
|
||||
is static;
|
||||
|
||||
Point (me; N: Integer) returns POnSurf
|
||||
---C++: return const &
|
||||
---Purpose: Returns the point of the Nth resulting distance.
|
||||
raises NotDone from StdFail,
|
||||
-- if IsDone(me)=False.
|
||||
|
@ -416,7 +416,7 @@ Standard_Real Extrema_ExtPExtS::SquareDistance (const Standard_Integer N) const
|
||||
}
|
||||
//=============================================================================
|
||||
|
||||
Extrema_POnSurf Extrema_ExtPExtS::Point (const Standard_Integer N) const
|
||||
const Extrema_POnSurf& Extrema_ExtPExtS::Point (const Standard_Integer N) const
|
||||
{
|
||||
if (!IsDone()) { StdFail_NotDone::Raise(); }
|
||||
if ((N < 1) || (N > myNbExt)) { Standard_OutOfRange::Raise(); }
|
||||
|
@ -85,6 +85,7 @@ is
|
||||
is static;
|
||||
|
||||
Point (me; N: Integer) returns POnSurf
|
||||
---C++: return const &
|
||||
---Purpose: Returns the point of the Nth resulting distance.
|
||||
raises NotDone from StdFail,
|
||||
-- if IsDone(me)=False.
|
||||
|
@ -528,7 +528,7 @@ Standard_Real Extrema_ExtPRevS::SquareDistance(const Standard_Integer N) const
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
Extrema_POnSurf Extrema_ExtPRevS::Point(const Standard_Integer N) const
|
||||
const Extrema_POnSurf& Extrema_ExtPRevS::Point(const Standard_Integer N) const
|
||||
{
|
||||
if (!IsDone()) { StdFail_NotDone::Raise(); }
|
||||
if ((N < 1) || (N > myNbExt)) { Standard_OutOfRange::Raise(); }
|
||||
|
@ -116,6 +116,7 @@ is
|
||||
is static;
|
||||
|
||||
Point (me; N: Integer) returns POnSurf
|
||||
---C++: return const &
|
||||
---Purpose: Returns the point of the Nth resulting distance.
|
||||
raises NotDone from StdFail,
|
||||
-- if IsDone(me)=False.
|
||||
|
@ -332,7 +332,7 @@ Standard_Integer Extrema_ExtPS::NbExt() const
|
||||
|
||||
|
||||
|
||||
Extrema_POnSurf Extrema_ExtPS::Point(const Standard_Integer N) const
|
||||
const Extrema_POnSurf& Extrema_ExtPS::Point(const Standard_Integer N) const
|
||||
{
|
||||
if(!myDone) StdFail_NotDone::Raise();
|
||||
return myPoints.Value(N);
|
||||
|
@ -66,6 +66,7 @@ is
|
||||
is static;
|
||||
|
||||
Point (me; N: Integer) returns POnSurf
|
||||
---C++: return const &
|
||||
---Purpose: Returns the point of the Nth resulting distance.
|
||||
raises NotDone from StdFail,
|
||||
-- if IsDone(me)=False.
|
||||
|
@ -102,7 +102,7 @@ Standard_Real Extrema_ExtPSOfRev::SquareDistance (const Standard_Integer N) cons
|
||||
}
|
||||
//=============================================================================
|
||||
|
||||
Extrema_POnSurf Extrema_ExtPSOfRev::Point (const Standard_Integer N) const
|
||||
const Extrema_POnSurf& Extrema_ExtPSOfRev::Point (const Standard_Integer N) const
|
||||
{
|
||||
if (!IsDone()) { StdFail_NotDone::Raise(); }
|
||||
return myPoint.Value(N);
|
||||
|
@ -89,6 +89,7 @@ is
|
||||
-- if N < 1 or N > NbExt(me).
|
||||
|
||||
Point (me; N: Integer) returns POnC
|
||||
---C++: return const &
|
||||
---Purpose: Returns the Nth extremum.
|
||||
raises OutOfRange from Standard,
|
||||
TypeMismatch from Standard;
|
||||
|
@ -411,7 +411,7 @@ Standard_Boolean Extrema_FuncExtPC::IsMin (const Standard_Integer N) const
|
||||
return (myIsMin.Value(N) == 1);
|
||||
}
|
||||
//=============================================================================
|
||||
POnC Extrema_FuncExtPC::Point (const Standard_Integer N) const
|
||||
const POnC & Extrema_FuncExtPC::Point (const Standard_Integer N) const
|
||||
{
|
||||
if (!myPinit || !myCinit) Standard_TypeMismatch::Raise();
|
||||
return myPoint.Value(N);
|
||||
|
@ -105,6 +105,7 @@ is
|
||||
-- if N < 1 or N > NbExt(me).
|
||||
|
||||
Point (me; N: Integer) returns POnSurf
|
||||
---C++: return const &
|
||||
---Purpose: Returns the Nth extremum.
|
||||
raises OutOfRange;
|
||||
-- if N < 1 or N > NbExt(me).
|
||||
|
@ -160,7 +160,7 @@ Standard_Real Extrema_FuncExtPS::SquareDistance (const Standard_Integer N) const
|
||||
}
|
||||
//=============================================================================
|
||||
|
||||
Extrema_POnSurf Extrema_FuncExtPS::Point (const Standard_Integer N) const
|
||||
const Extrema_POnSurf& Extrema_FuncExtPS::Point (const Standard_Integer N) const
|
||||
{
|
||||
if (!myPinit || !mySinit) Standard_TypeMismatch::Raise();
|
||||
return myPoint.Value(N);
|
||||
|
@ -78,11 +78,13 @@ is
|
||||
-- if N < 1 or N > NbExt(me).
|
||||
|
||||
PointOnS1 (me; N: Integer) returns POnSurf
|
||||
---C++: return const &
|
||||
---Purpose: Return the Nth extremum on S1.
|
||||
raises OutOfRange;
|
||||
-- if N < 1 or N > NbExt(me).
|
||||
|
||||
PointOnS2 (me; N: Integer) returns POnSurf
|
||||
---C++: return const &
|
||||
---Purpose: Renvoie le Nieme extremum sur S2.
|
||||
raises OutOfRange;
|
||||
-- si N < 1 ou N > NbExt(me).
|
||||
|
@ -257,7 +257,7 @@ Standard_Real Extrema_FuncExtSS::SquareDistance (const Standard_Integer N) const
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
Extrema_POnSurf Extrema_FuncExtSS::PointOnS1 (const Standard_Integer N) const
|
||||
const Extrema_POnSurf& Extrema_FuncExtSS::PointOnS1 (const Standard_Integer N) const
|
||||
{
|
||||
if (!myS1init || !myS2init) Standard_TypeMismatch::Raise();
|
||||
return myPoint1.Value(N);
|
||||
@ -267,7 +267,7 @@ Extrema_POnSurf Extrema_FuncExtSS::PointOnS1 (const Standard_Integer N) const
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
Extrema_POnSurf Extrema_FuncExtSS::PointOnS2 (const Standard_Integer N) const
|
||||
const Extrema_POnSurf& Extrema_FuncExtSS::PointOnS2 (const Standard_Integer N) const
|
||||
{
|
||||
if (!myS1init || !myS2init) Standard_TypeMismatch::Raise();
|
||||
return myPoint2.Value(N);
|
||||
|
@ -118,6 +118,7 @@ is
|
||||
is static;
|
||||
|
||||
Point(me; N: Integer from Standard) returns ThePOnC
|
||||
---C++: return const &
|
||||
---Purpose: Returns the point of the <N>th extremum distance.
|
||||
raises NotDone from StdFail,
|
||||
OutOfRange from Standard
|
||||
|
@ -337,7 +337,7 @@ Standard_Boolean Extrema_GExtPC::IsMin(const Standard_Integer N) const
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
ThePOnC Extrema_GExtPC::Point(const Standard_Integer N) const
|
||||
const ThePOnC & Extrema_GExtPC::Point(const Standard_Integer N) const
|
||||
{
|
||||
if(!mydone) StdFail_NotDone::Raise();
|
||||
if ((N < 1) || (N > mySqDist.Length())) Standard_OutOfRange::Raise();
|
||||
|
@ -119,6 +119,7 @@ is
|
||||
is static;
|
||||
|
||||
Point (me) returns ThePOnC
|
||||
---C++: return const &
|
||||
---Purpose: Returns the point of the extremum distance.
|
||||
raises NotDone from StdFail
|
||||
-- if IsDone(me)=False.
|
||||
|
@ -330,20 +330,14 @@ Standard_Boolean Extrema_GLocateExtPC::IsMin () const
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
ThePOnC Extrema_GLocateExtPC::Point () const
|
||||
const ThePOnC & Extrema_GLocateExtPC::Point () const
|
||||
{
|
||||
if (!myDone) { StdFail_NotDone::Raise(); }
|
||||
ThePOnC P;
|
||||
if (type == GeomAbs_BezierCurve) {
|
||||
P = myLocExtPC.Point();
|
||||
return myLocExtPC.Point();
|
||||
}
|
||||
else if(type == GeomAbs_BSplineCurve || type == GeomAbs_OtherCurve) {
|
||||
P = mypp;
|
||||
return mypp;
|
||||
}
|
||||
else {
|
||||
if (numberext != 0) {
|
||||
P = myExtremPC.Point(numberext);
|
||||
}
|
||||
}
|
||||
return P;
|
||||
return myExtremPC.Point(numberext);
|
||||
}
|
||||
|
@ -133,6 +133,7 @@ is
|
||||
|
||||
|
||||
Point (me; N: Integer) returns POnC
|
||||
---C++: return const &
|
||||
---Purpose: Returns the point of the Nth extremum distance.
|
||||
raises TypeMismatch from Standard,
|
||||
NotDone from StdFail,
|
||||
|
@ -235,7 +235,7 @@ Standard_Boolean Extrema_GenExtPC::IsMin (const Standard_Integer N) const {
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
POnC Extrema_GenExtPC::Point (const Standard_Integer N) const
|
||||
const POnC & Extrema_GenExtPC::Point (const Standard_Integer N) const
|
||||
{
|
||||
if (!IsDone()) { StdFail_NotDone::Raise(); }
|
||||
return myF.Point(N);
|
||||
|
@ -126,6 +126,7 @@ is
|
||||
is static;
|
||||
|
||||
Point (me; N: Integer) returns POnSurf
|
||||
---C++: return const &
|
||||
---Purpose: Returns the point of the Nth resulting distance.
|
||||
raises NotDone from StdFail,
|
||||
-- if IsDone(me)=False.
|
||||
|
@ -953,7 +953,7 @@ Standard_Real Extrema_GenExtPS::SquareDistance (const Standard_Integer N) const
|
||||
}
|
||||
//=============================================================================
|
||||
|
||||
Extrema_POnSurf Extrema_GenExtPS::Point (const Standard_Integer N) const
|
||||
const Extrema_POnSurf& Extrema_GenExtPS::Point (const Standard_Integer N) const
|
||||
{
|
||||
if (!IsDone()) { StdFail_NotDone::Raise(); }
|
||||
return myF.Point(N);
|
||||
|
@ -111,6 +111,7 @@ is
|
||||
is static;
|
||||
|
||||
PointOnS1 (me; N: Integer) returns POnSurf
|
||||
---C++: return const &
|
||||
---Purpose: Returns the point of the Nth resulting distance.
|
||||
raises NotDone from StdFail,
|
||||
-- if IsDone(me)=False.
|
||||
@ -119,6 +120,7 @@ is
|
||||
is static;
|
||||
|
||||
PointOnS2 (me; N: Integer) returns POnSurf
|
||||
---C++: return const &
|
||||
---Purpose: Returns the point of the Nth resulting distance.
|
||||
raises NotDone from StdFail,
|
||||
-- if IsDone(me)=False.
|
||||
|
@ -321,7 +321,7 @@ Standard_Real Extrema_GenExtSS::SquareDistance(const Standard_Integer N) const
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
Extrema_POnSurf Extrema_GenExtSS::PointOnS1(const Standard_Integer N) const
|
||||
const Extrema_POnSurf& Extrema_GenExtSS::PointOnS1(const Standard_Integer N) const
|
||||
{
|
||||
if (!IsDone()) { StdFail_NotDone::Raise(); }
|
||||
return myF.PointOnS1(N);
|
||||
@ -332,7 +332,7 @@ Extrema_POnSurf Extrema_GenExtSS::PointOnS1(const Standard_Integer N) const
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
Extrema_POnSurf Extrema_GenExtSS::PointOnS2(const Standard_Integer N) const
|
||||
const Extrema_POnSurf& Extrema_GenExtSS::PointOnS2(const Standard_Integer N) const
|
||||
{
|
||||
if (!IsDone()) { StdFail_NotDone::Raise(); }
|
||||
return myF.PointOnS2(N);
|
||||
|
@ -102,6 +102,7 @@ is
|
||||
is static;
|
||||
|
||||
Point (me) returns POnC
|
||||
---C++: return const &
|
||||
---Purpose: Returns the point of the extremum distance.
|
||||
raises NotDone from StdFail
|
||||
-- if IsDone(me)=False.
|
||||
|
@ -167,7 +167,7 @@ Standard_Boolean Extrema_GenLocateExtPC::IsMin () const
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
POnC Extrema_GenLocateExtPC::Point () const
|
||||
const POnC & Extrema_GenLocateExtPC::Point () const
|
||||
{
|
||||
if (!myDone) { StdFail_NotDone::Raise(); }
|
||||
return myF.Point(1);
|
||||
|
@ -60,6 +60,7 @@ is
|
||||
is static;
|
||||
|
||||
Point (me) returns POnSurf
|
||||
---C++: return const &
|
||||
---Purpose: Returns the point of the extremum distance.
|
||||
raises NotDone from StdFail
|
||||
-- if IsDone(me)=False.
|
||||
|
@ -101,7 +101,7 @@ Standard_Real Extrema_GenLocateExtPS::SquareDistance () const
|
||||
}
|
||||
//=============================================================================
|
||||
|
||||
Extrema_POnSurf Extrema_GenLocateExtPS::Point () const
|
||||
const Extrema_POnSurf& Extrema_GenLocateExtPS::Point () const
|
||||
{
|
||||
if (!IsDone()) { StdFail_NotDone::Raise(); }
|
||||
return myPoint;
|
||||
|
Loading…
x
Reference in New Issue
Block a user