summaryrefslogtreecommitdiff
path: root/inc/ShapeExtend_ComplexCurve.lxx
blob: cee46b9e23047005ca8206719356d47a37c1562d (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
// File:	ShapeExtend_ComplexCurve.lxx
// Created:	Tue Jun 22 19:24:28 1999
// Author:	Roman LYGIN
//		<rln@kinox.nnov.matra-dtv.fr>


//=======================================================================
//function : ReversedParameter
//purpose  : 
//=======================================================================

inline  Standard_Real ShapeExtend_ComplexCurve::ReversedParameter(const Standard_Real U) const
{
  return (1 - U);
}
 
//=======================================================================
//function : FirstParameter
//purpose  : 
//=======================================================================

inline  Standard_Real ShapeExtend_ComplexCurve::FirstParameter() const
{
  return 0;
}
 
//=======================================================================
//function : LastParameter
//purpose  : 
//=======================================================================

inline  Standard_Real ShapeExtend_ComplexCurve::LastParameter() const
{
  return 1;
}
 
//=======================================================================
//function : IsClosed
//purpose  : 
//=======================================================================

inline  Standard_Boolean ShapeExtend_ComplexCurve::IsClosed() const
{
  return myClosed;
}

//=======================================================================
//function : IsPeriodic
//purpose  : 
//=======================================================================

inline  Standard_Boolean ShapeExtend_ComplexCurve::IsPeriodic() const
{
  return Standard_False;
}

//=======================================================================
//function : Continuity
//purpose  : 
//=======================================================================

inline  GeomAbs_Shape ShapeExtend_ComplexCurve::Continuity() const
{
  return GeomAbs_C0;
}

//=======================================================================
//function : IsCN
//purpose  : 
//=======================================================================

inline  Standard_Boolean ShapeExtend_ComplexCurve::IsCN(const Standard_Integer N) const
{
  return N <=0;
}