File indexing completed on 2025-01-18 10:03:40
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _GeomFill_SectionGenerator_HeaderFile
0018 #define _GeomFill_SectionGenerator_HeaderFile
0019
0020 #include <Standard.hxx>
0021 #include <Standard_DefineAlloc.hxx>
0022 #include <Standard_Handle.hxx>
0023
0024 #include <TColStd_HArray1OfReal.hxx>
0025 #include <GeomFill_Profiler.hxx>
0026 #include <Standard_Integer.hxx>
0027 #include <TColStd_Array1OfReal.hxx>
0028 #include <TColStd_Array1OfInteger.hxx>
0029 #include <TColgp_Array1OfPnt.hxx>
0030 #include <TColgp_Array1OfVec.hxx>
0031 #include <TColgp_Array1OfPnt2d.hxx>
0032 #include <TColgp_Array1OfVec2d.hxx>
0033
0034
0035
0036
0037
0038 class GeomFill_SectionGenerator : public GeomFill_Profiler
0039 {
0040 public:
0041
0042 DEFINE_STANDARD_ALLOC
0043
0044
0045 Standard_EXPORT GeomFill_SectionGenerator();
0046
0047 Standard_EXPORT void SetParam (const Handle(TColStd_HArray1OfReal)& Params);
0048
0049 Standard_EXPORT void GetShape (Standard_Integer& NbPoles, Standard_Integer& NbKnots, Standard_Integer& Degree, Standard_Integer& NbPoles2d) const;
0050
0051 Standard_EXPORT void Knots (TColStd_Array1OfReal& TKnots) const;
0052
0053 Standard_EXPORT void Mults (TColStd_Array1OfInteger& TMults) const;
0054
0055
0056
0057
0058 Standard_EXPORT Standard_Boolean Section (const Standard_Integer P, TColgp_Array1OfPnt& Poles, TColgp_Array1OfVec& DPoles, TColgp_Array1OfPnt2d& Poles2d, TColgp_Array1OfVec2d& DPoles2d, TColStd_Array1OfReal& Weigths, TColStd_Array1OfReal& DWeigths) const;
0059
0060 Standard_EXPORT void Section (const Standard_Integer P, TColgp_Array1OfPnt& Poles, TColgp_Array1OfPnt2d& Poles2d, TColStd_Array1OfReal& Weigths) const;
0061
0062
0063
0064 Standard_EXPORT Standard_Real Parameter (const Standard_Integer P) const;
0065
0066
0067
0068
0069 protected:
0070
0071
0072
0073 Handle(TColStd_HArray1OfReal) myParams;
0074
0075
0076 private:
0077
0078
0079
0080
0081
0082 };
0083
0084
0085
0086
0087
0088
0089
0090 #endif