summaryrefslogtreecommitdiff
path: root/inc/IntTools_SurfaceRangeSample.lxx
blob: fcb71532138148f0d67a83422a29c6a7a8245a4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
// File:	IntTools_SurfaceRangeSample.lxx
// Created:	Wed Oct  5 16:55:26 2005
// Author:	Mikhail KLOKOV
//		<mkk@kurox>


inline void IntTools_SurfaceRangeSample::SetRanges(const IntTools_CurveRangeSample& theRangeU,
						   const IntTools_CurveRangeSample& theRangeV) 
{
  myRangeU = theRangeU;
  myRangeV = theRangeV;
}

 
inline void IntTools_SurfaceRangeSample::GetRanges(IntTools_CurveRangeSample& theRangeU,
					     IntTools_CurveRangeSample& theRangeV) const
{
  theRangeU = myRangeU;
  theRangeV = myRangeV;
}

 
inline void IntTools_SurfaceRangeSample::SetIndexes(const Standard_Integer theIndexU,
						    const Standard_Integer theIndexV) 
{
  myRangeU.SetRangeIndex(theIndexU);
  myRangeV.SetRangeIndex(theIndexV);
}

 
inline void IntTools_SurfaceRangeSample::GetIndexes(Standard_Integer& theIndexU,Standard_Integer& theIndexV) const
{
  theIndexU = myRangeU.GetRangeIndex();
  theIndexV = myRangeV.GetRangeIndex();
}

 
inline void IntTools_SurfaceRangeSample::GetDepths(Standard_Integer& theDepthU,Standard_Integer& theDepthV) const
{
  theDepthU = myRangeU.GetDepth();
  theDepthV = myRangeV.GetDepth();
}

 
inline void IntTools_SurfaceRangeSample::SetSampleRangeU(const IntTools_CurveRangeSample& theRangeSampleU) 
{
  myRangeU = theRangeSampleU;
}

 
inline const IntTools_CurveRangeSample& IntTools_SurfaceRangeSample::GetSampleRangeU() const
{
  return myRangeU;
}

 
inline void IntTools_SurfaceRangeSample::SetSampleRangeV(const IntTools_CurveRangeSample& theRangeSampleV) 
{
  myRangeV = theRangeSampleV;
}

 
inline const IntTools_CurveRangeSample& IntTools_SurfaceRangeSample::GetSampleRangeV() const
{
  return myRangeV;
}

 
inline void IntTools_SurfaceRangeSample::SetIndexU(const Standard_Integer theIndexU) 
{
  myRangeU.SetRangeIndex(theIndexU);
}

 
inline Standard_Integer IntTools_SurfaceRangeSample::GetIndexU() const
{
  return myRangeU.GetRangeIndex();
}

 
inline void IntTools_SurfaceRangeSample::SetIndexV(const Standard_Integer theIndexV) 
{
  myRangeV.SetRangeIndex(theIndexV);
}

 
inline Standard_Integer IntTools_SurfaceRangeSample::GetIndexV() const
{
  return myRangeV.GetRangeIndex();
}

 
inline void IntTools_SurfaceRangeSample::SetDepthU(const Standard_Integer theDepthU) 
{
  myRangeU.SetDepth(theDepthU);
}

 
inline Standard_Integer IntTools_SurfaceRangeSample::GetDepthU() const
{
  return myRangeU.GetDepth();
}

 
inline void IntTools_SurfaceRangeSample::SetDepthV(const Standard_Integer theDepthV) 
{
  myRangeV.SetDepth(theDepthV);
}

 
inline Standard_Integer IntTools_SurfaceRangeSample::GetDepthV() const
{
  return myRangeV.GetDepth();
}

inline Standard_Boolean IntTools_SurfaceRangeSample::IsEqual(const IntTools_SurfaceRangeSample& Other) const
{
  return (myRangeU.IsEqual(Other.myRangeU) && myRangeV.IsEqual(Other.myRangeV));
}

 
inline Standard_Integer IntTools_SurfaceRangeSample::GetRangeIndexUDeeper(const Standard_Integer theNbSampleU) const
{
  return myRangeU.GetRangeIndexDeeper(theNbSampleU);
}

 
inline Standard_Integer IntTools_SurfaceRangeSample::GetRangeIndexVDeeper(const Standard_Integer theNbSampleV) const
{
  return myRangeV.GetRangeIndexDeeper(theNbSampleV);
}