Warnings on vc14 were eliminated
[occt.git] / src / Extrema / Extrema_FuncExtCC.lxx
1 // Copyright (c) 1999-2014 OPEN CASCADE SAS
2 //
3 // This file is part of Open CASCADE Technology software library.
4 //
5 // This library is free software; you can redistribute it and/or modify it under
6 // the terms of the GNU Lesser General Public License version 2.1 as published
7 // by the Free Software Foundation, with special exception defined in the file
8 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9 // distribution for complete text of the license and disclaimer of any warranty.
10 //
11 // Alternatively, this file may be used under the terms of Open CASCADE
12 // commercial license or contractual agreement.
13
14 //=============================================================================
15 inline void Extrema_FuncExtCC::SetTolerance (const Standard_Real theTol)
16 {
17   myTol = theTol;
18 }
19
20 //=============================================================================
21
22 inline Standard_Integer Extrema_FuncExtCC::NbVariables () const { return 2; }
23
24 //=============================================================================
25
26 inline Standard_Integer Extrema_FuncExtCC::NbEquations () const { return 2; }
27
28 //=============================================================================
29
30 inline Standard_Integer Extrema_FuncExtCC::NbExt () const { return mySqDist.Length(); }
31
32 //=============================================================================
33
34 inline Standard_Real Extrema_FuncExtCC::SquareDistance (const Standard_Integer N) const
35 {
36   return mySqDist.Value(N);
37 }
38
39 //=============================================================================
40
41 inline Standard_Address Extrema_FuncExtCC::CurvePtr (const Standard_Integer theRank) const
42 {
43   Standard_OutOfRange_Raise_if (theRank < 1 || theRank > 2, "Extrema_FuncExtCC::SetCurve()")
44   return (theRank == 1 ? myC1 : myC2);
45 }
46
47 //=============================================================================
48
49 inline Standard_Real Extrema_FuncExtCC::Tolerance() const
50 {
51   return myTol;
52 }