summaryrefslogtreecommitdiff
path: root/inc/Intf_TangentZone.lxx
blob: 8c2ece3b647c34f37f73c4c1aacebecb8b469590 (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
// File:	Intf_TangentZone.lxx
// Created:	Tue Jun 25 10:06:14 1991
// Author:	Didier PIFFAULT
//		<dpf@phobox>

#include <Intf_SeqOfSectionPoint.hxx>

//=======================================================================
//function : NumberOfPoint
//purpose  : Return the points number of the tangent zone.
//=======================================================================

inline Standard_Integer Intf_TangentZone::NumberOfPoints   () const
{
  return Result.Length();
}

//=======================================================================
//function : ParamOnFirst
//purpose  : 
//=======================================================================

inline void Intf_TangentZone::ParamOnFirst(Standard_Real& paraMin,
				    Standard_Real& paraMax) const
{
  paraMin = ParamOnFirstMin;
  paraMax = ParamOnFirstMax;
}


//=======================================================================
//function : ParamOnSecond
//purpose  : 
//=======================================================================

inline void Intf_TangentZone::ParamOnSecond(Standard_Real& paraMin,
				     Standard_Real& paraMax) const
{
  paraMin = ParamOnSecondMin;
  paraMax = ParamOnSecondMax;
}