File indexing completed on 2026-06-07 08:30:54
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _GeomFill_Fixed_HeaderFile
0018 #define _GeomFill_Fixed_HeaderFile
0019
0020 #include <Standard.hxx>
0021
0022 #include <GeomFill_TrihedronLaw.hxx>
0023 #include <Standard_Real.hxx>
0024 #include <Standard_Integer.hxx>
0025 #include <GeomAbs_Shape.hxx>
0026 #include <TColStd_Array1OfReal.hxx>
0027
0028 class GeomFill_Fixed;
0029 DEFINE_STANDARD_HANDLE(GeomFill_Fixed, GeomFill_TrihedronLaw)
0030
0031
0032 class GeomFill_Fixed : public GeomFill_TrihedronLaw
0033 {
0034
0035 public:
0036 Standard_EXPORT GeomFill_Fixed(const gp_Vec& Tangent, const gp_Vec& Normal);
0037
0038 Standard_EXPORT virtual Handle(GeomFill_TrihedronLaw) Copy() const Standard_OVERRIDE;
0039
0040
0041 Standard_EXPORT virtual Standard_Boolean D0(const Standard_Real Param,
0042 gp_Vec& Tangent,
0043 gp_Vec& Normal,
0044 gp_Vec& BiNormal) Standard_OVERRIDE;
0045
0046
0047
0048
0049 Standard_EXPORT virtual Standard_Boolean D1(const Standard_Real Param,
0050 gp_Vec& Tangent,
0051 gp_Vec& DTangent,
0052 gp_Vec& Normal,
0053 gp_Vec& DNormal,
0054 gp_Vec& BiNormal,
0055 gp_Vec& DBiNormal) Standard_OVERRIDE;
0056
0057
0058
0059
0060 Standard_EXPORT virtual Standard_Boolean D2(const Standard_Real Param,
0061 gp_Vec& Tangent,
0062 gp_Vec& DTangent,
0063 gp_Vec& D2Tangent,
0064 gp_Vec& Normal,
0065 gp_Vec& DNormal,
0066 gp_Vec& D2Normal,
0067 gp_Vec& BiNormal,
0068 gp_Vec& DBiNormal,
0069 gp_Vec& D2BiNormal) Standard_OVERRIDE;
0070
0071
0072
0073
0074 Standard_EXPORT virtual Standard_Integer NbIntervals(const GeomAbs_Shape S) const
0075 Standard_OVERRIDE;
0076
0077
0078
0079
0080
0081
0082 Standard_EXPORT virtual void Intervals(TColStd_Array1OfReal& T,
0083 const GeomAbs_Shape S) const Standard_OVERRIDE;
0084
0085
0086
0087 Standard_EXPORT virtual void GetAverageLaw(gp_Vec& ATangent,
0088 gp_Vec& ANormal,
0089 gp_Vec& ABiNormal) Standard_OVERRIDE;
0090
0091
0092 Standard_EXPORT virtual Standard_Boolean IsConstant() const Standard_OVERRIDE;
0093
0094 DEFINE_STANDARD_RTTIEXT(GeomFill_Fixed, GeomFill_TrihedronLaw)
0095
0096 protected:
0097 private:
0098 gp_Vec T;
0099 gp_Vec N;
0100 gp_Vec B;
0101 };
0102
0103 #endif