summaryrefslogtreecommitdiff
path: root/inc/BRepBlend_AppSurface.lxx
blob: e15134aa841cf5a4704fd98a96d5663927d5dbbf (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
// File:	BRepBlend_AppSurface.lxx
// Created:	Tue Nov 26 10:21:03 1996
// Author:	Philippe MANGIN
//		<pmn@sgi29>


#include <StdFail_NotDone.hxx>
#include <TColgp_HArray2OfPnt.hxx>
#include <TColgp_HArray1OfPnt2d.hxx>
#include <TColStd_HArray2OfReal.hxx>
#include <TColStd_HArray1OfReal.hxx>
#include <TColStd_HArray1OfInteger.hxx>


inline Standard_Boolean BRepBlend_AppSurface::IsDone() const
{
  return approx.IsDone();
}


inline Standard_Integer BRepBlend_AppSurface::UDegree() const
{
  return approx.UDegree();
}

inline Standard_Integer BRepBlend_AppSurface::VDegree() const
{
  return approx.VDegree();
}

inline const TColgp_Array2OfPnt& 
BRepBlend_AppSurface::SurfPoles() const
{
  return approx.SurfPoles();
}

inline const TColStd_Array2OfReal& 
BRepBlend_AppSurface::SurfWeights() const
{
  return approx.SurfWeights();
}


inline const TColStd_Array1OfReal& 
BRepBlend_AppSurface::SurfUKnots() const
{
   return approx.SurfUKnots(); 
}

inline const TColStd_Array1OfReal& 
BRepBlend_AppSurface::SurfVKnots() const
{
   return approx.SurfVKnots(); 
}

inline const TColStd_Array1OfInteger& 
BRepBlend_AppSurface::SurfUMults() const
{
   return approx.SurfUMults(); 
}

inline const TColStd_Array1OfInteger& 
BRepBlend_AppSurface::SurfVMults() const
{
  return approx.SurfVMults(); 
}

inline Standard_Integer BRepBlend_AppSurface::NbCurves2d() const
{
 return approx.NbCurves2d();
}

inline Standard_Integer BRepBlend_AppSurface::Curves2dDegree() const
{
  return approx.Curves2dDegree();
}

inline const TColgp_Array1OfPnt2d& 
BRepBlend_AppSurface::Curve2dPoles(const Standard_Integer Index) const
{
  return  approx.Curve2dPoles(Index);
}

inline const TColStd_Array1OfReal& 
BRepBlend_AppSurface::Curves2dKnots() const
{
   return approx.Curves2dKnots();
}

inline const TColStd_Array1OfInteger& 
BRepBlend_AppSurface::Curves2dMults () const
{
   return approx.Curves2dMults(); 
}