blob: 61abc932142c616d9128c22d690e8bc4723e5ea9 (
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
|
// File: GeomFill_Profiler.lxx
// Created: Fri Feb 18 14:08:53 1994
// Author: Bruno DUMORTIER
// <dub@fuegox>
//=======================================================================
//function : IsPeriodic
//purpose :
//=======================================================================
inline Standard_Boolean GeomFill_Profiler::IsPeriodic() const
{
return myIsPeriodic;
}
//=======================================================================
//function : Curve
//purpose :
//=======================================================================
inline const Handle(Geom_Curve)& GeomFill_Profiler::Curve
(const Standard_Integer Index) const
{
return mySequence( Index);
}
|