blob: 4ee6067d77dd031dc1797e42d470b0fd3756f032 (
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
|
// File: AdvApprox_ApproxAFunction.lxx
// Created: Wed May 31 15:27:05 1995
// Author: Xavier BENVENISTE
// <xab@nonox>
#include <Standard_ConstructionError.hxx>
#include <TColStd_HArray1OfReal.hxx>
#include <TColStd_HArray1OfInteger.hxx>
//=======================================================================
//function : IsDone
//purpose :
//=======================================================================
inline Standard_Boolean AdvApprox_ApproxAFunction::HasResult() const
{ return myHasResult ; }
//=======================================================================
//function : IsDone
//purpose :
//=======================================================================
inline Standard_Boolean AdvApprox_ApproxAFunction::IsDone() const
{ return myDone ; }
//=======================================================================
//function : Poles1d
//purpose :
//=======================================================================
inline Handle(TColStd_HArray2OfReal) AdvApprox_ApproxAFunction::Poles1d()
const
{ return my1DPoles ; }
//=======================================================================
//function : Poles2d
//purpose :
//=======================================================================
inline Handle(TColgp_HArray2OfPnt2d) AdvApprox_ApproxAFunction::Poles2d()
const
{ return my2DPoles ; }
//=======================================================================
//function : Poles
//purpose :
//=======================================================================
inline Handle(TColgp_HArray2OfPnt) AdvApprox_ApproxAFunction::Poles()
const
{ return my3DPoles ; }
//=======================================================================
//function : Degree
//purpose :
//=======================================================================
inline Standard_Integer AdvApprox_ApproxAFunction::Degree() const
{ return myDegree ; }
//=======================================================================
//function : NbKnots
//purpose :
//=======================================================================
inline Standard_Integer AdvApprox_ApproxAFunction::NbKnots() const
{ return myKnots->Length() ; }
//=======================================================================
//function : Knots
//purpose :
//=======================================================================
inline Handle(TColStd_HArray1OfReal) AdvApprox_ApproxAFunction::Knots() const
{ return myKnots ; }
//=======================================================================
//function : Multiplicities
//purpose :
//=======================================================================
inline Handle(TColStd_HArray1OfInteger)
AdvApprox_ApproxAFunction::Multiplicities() const
{ return myMults ;}
//=======================================================================
//function : NumSubSpaces
//purpose :
//=======================================================================
inline Standard_Integer AdvApprox_ApproxAFunction::NumSubSpaces(const Standard_Integer Dimension) const
{ if (Dimension < 1 || Dimension > 3) Standard_ConstructionError::Raise() ;
return myNumSubSpaces[Dimension-1] ; }
|