Integration of OCCT 6.5.0 from SVN
[occt.git] / src / BRepBlend / BRepBlend_AppSurface.lxx
CommitLineData
7fd59977 1// File: BRepBlend_AppSurface.lxx
2// Created: Tue Nov 26 10:21:03 1996
3// Author: Philippe MANGIN
4// <pmn@sgi29>
5
6
7#include <StdFail_NotDone.hxx>
8#include <TColgp_HArray2OfPnt.hxx>
9#include <TColgp_HArray1OfPnt2d.hxx>
10#include <TColStd_HArray2OfReal.hxx>
11#include <TColStd_HArray1OfReal.hxx>
12#include <TColStd_HArray1OfInteger.hxx>
13
14
15inline Standard_Boolean BRepBlend_AppSurface::IsDone() const
16{
17 return approx.IsDone();
18}
19
20
21inline Standard_Integer BRepBlend_AppSurface::UDegree() const
22{
23 return approx.UDegree();
24}
25
26inline Standard_Integer BRepBlend_AppSurface::VDegree() const
27{
28 return approx.VDegree();
29}
30
31inline const TColgp_Array2OfPnt&
32BRepBlend_AppSurface::SurfPoles() const
33{
34 return approx.SurfPoles();
35}
36
37inline const TColStd_Array2OfReal&
38BRepBlend_AppSurface::SurfWeights() const
39{
40 return approx.SurfWeights();
41}
42
43
44inline const TColStd_Array1OfReal&
45BRepBlend_AppSurface::SurfUKnots() const
46{
47 return approx.SurfUKnots();
48}
49
50inline const TColStd_Array1OfReal&
51BRepBlend_AppSurface::SurfVKnots() const
52{
53 return approx.SurfVKnots();
54}
55
56inline const TColStd_Array1OfInteger&
57BRepBlend_AppSurface::SurfUMults() const
58{
59 return approx.SurfUMults();
60}
61
62inline const TColStd_Array1OfInteger&
63BRepBlend_AppSurface::SurfVMults() const
64{
65 return approx.SurfVMults();
66}
67
68inline Standard_Integer BRepBlend_AppSurface::NbCurves2d() const
69{
70 return approx.NbCurves2d();
71}
72
73inline Standard_Integer BRepBlend_AppSurface::Curves2dDegree() const
74{
75 return approx.Curves2dDegree();
76}
77
78inline const TColgp_Array1OfPnt2d&
79BRepBlend_AppSurface::Curve2dPoles(const Standard_Integer Index) const
80{
81 return approx.Curve2dPoles(Index);
82}
83
84inline const TColStd_Array1OfReal&
85BRepBlend_AppSurface::Curves2dKnots() const
86{
87 return approx.Curves2dKnots();
88}
89
90inline const TColStd_Array1OfInteger&
91BRepBlend_AppSurface::Curves2dMults () const
92{
93 return approx.Curves2dMults();
94}
95
96