File indexing completed on 2026-06-05 08:34:25
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #ifndef _IntTools_TopolTool_HeaderFile
0017 #define _IntTools_TopolTool_HeaderFile
0018
0019 #include <Adaptor3d_TopolTool.hxx>
0020 #include <Adaptor3d_Surface.hxx>
0021
0022 class gp_Pnt2d;
0023 class gp_Pnt;
0024
0025 class IntTools_TopolTool;
0026 DEFINE_STANDARD_HANDLE(IntTools_TopolTool, Adaptor3d_TopolTool)
0027
0028
0029
0030 class IntTools_TopolTool : public Adaptor3d_TopolTool
0031 {
0032
0033 public:
0034
0035 Standard_EXPORT IntTools_TopolTool();
0036
0037
0038 Standard_EXPORT IntTools_TopolTool(const Handle(Adaptor3d_Surface)& theSurface);
0039
0040
0041
0042
0043
0044 Standard_EXPORT virtual void Initialize() Standard_OVERRIDE;
0045
0046
0047 Standard_EXPORT virtual void Initialize(const Handle(Adaptor3d_Surface)& theSurface)
0048 Standard_OVERRIDE;
0049
0050 Standard_EXPORT virtual void ComputeSamplePoints() Standard_OVERRIDE;
0051
0052
0053 Standard_EXPORT virtual Standard_Integer NbSamplesU() Standard_OVERRIDE;
0054
0055
0056 Standard_EXPORT virtual Standard_Integer NbSamplesV() Standard_OVERRIDE;
0057
0058
0059 Standard_EXPORT virtual Standard_Integer NbSamples() Standard_OVERRIDE;
0060
0061
0062
0063
0064
0065 Standard_EXPORT virtual void SamplePoint(const Standard_Integer Index,
0066 gp_Pnt2d& P2d,
0067 gp_Pnt& P3d) Standard_OVERRIDE;
0068
0069
0070
0071
0072
0073
0074
0075 Standard_EXPORT virtual void SamplePnts(const Standard_Real theDefl,
0076 const Standard_Integer theNUmin,
0077 const Standard_Integer theNVmin) Standard_OVERRIDE;
0078
0079 DEFINE_STANDARD_RTTIEXT(IntTools_TopolTool, Adaptor3d_TopolTool)
0080
0081 protected:
0082 private:
0083 Standard_Integer myNbSmplU;
0084 Standard_Integer myNbSmplV;
0085 Standard_Real myU0;
0086 Standard_Real myV0;
0087 Standard_Real myDU;
0088 Standard_Real myDV;
0089 };
0090
0091 #endif