0024095: Eliminate compiler warning C4512 in MSVC++ with warning level 4
[occt.git] / src / Extrema / Extrema_CurveCache.lxx
CommitLineData
b311480e 1// Created on: 2008-12-28
2// Created by: Roman Lygin
3// Copyright (c) 2008-2012 OPEN CASCADE SAS
4//
5// The content of this file is subject to the Open CASCADE Technology Public
6// License Version 6.5 (the "License"). You may not use the content of this file
7// except in compliance with the License. Please obtain a copy of the License
8// at http://www.opencascade.org and read it completely before using this file.
9//
10// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
11// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
12//
13// The Original Code and all software distributed under the License is
14// distributed on an "AS IS" basis, without warranty of any kind, and the
15// Initial Developer hereby disclaims all such warranties, including without
16// limitation, any warranties of merchantability, fitness for a particular
17// purpose or non-infringement. Please see the License for the specific terms
18// and conditions governing the rights and limitations under the License.
19
7fd59977 20// roman.lygin@gmail.com
7fd59977 21
22#include <StdFail_NotDone.hxx>
afed7fd7 23#include <TColStd_HArray1OfReal.hxx>
7fd59977 24
25//=======================================================================
26//function : IsValid
27//purpose :
28//=======================================================================
29
30inline Standard_Boolean Extrema_CurveCache::IsValid() const
31{
32 return myIsArrayValid;
33}
34
afed7fd7 35//=======================================================================
36//function : Parameters
37//purpose :
38//=======================================================================
39
40inline const Handle(TColStd_HArray1OfReal)& Extrema_CurveCache::Parameters() const
41{
42 StdFail_NotDone_Raise_if (!myIsArrayValid, "Extrema_CurveCache::Parameters()")
43 return myParamArray;
44}
45
7fd59977 46//=======================================================================
47//function : Points
48//purpose :
49//=======================================================================
50
51inline const Handle(ArrayOfPnt)& Extrema_CurveCache::Points() const
52{
53 StdFail_NotDone_Raise_if (!myIsArrayValid, "Extrema_CurveCache::Points()")
54 return myPntArray;
55}
56
57//=======================================================================
58//function : CurvePtr
59//purpose :
60//=======================================================================
61
62inline Standard_Address Extrema_CurveCache::CurvePtr() const
63{
64 return myC;
65}
66
67//=======================================================================
68//function : NbSamples
69//purpose :
70//=======================================================================
71
72inline Standard_Integer Extrema_CurveCache::NbSamples() const
73{
74 return myNbSamples;
75}
76
77//=======================================================================
78//function : FirstParameter
79//purpose :
80//=======================================================================
81
82inline Standard_Real Extrema_CurveCache::FirstParameter() const
83{
84 return myFirst;
85}
86
87//=======================================================================
88//function : LastParameter
89//purpose :
90//=======================================================================
91
92inline Standard_Real Extrema_CurveCache::LastParameter() const
93{
94 return myLast;
95}
96
97//=======================================================================
98//function : TrimFirstParameter
99//purpose :
100//=======================================================================
101
102inline Standard_Real Extrema_CurveCache::TrimFirstParameter() const
103{
104 return myTrimFirst;
105}
106
107//=======================================================================
108//function : TrimLastParameter
109//purpose :
110//=======================================================================
111
112inline Standard_Real Extrema_CurveCache::TrimLastParameter() const
113{
114 return myTrimLast;
115}