File indexing completed on 2025-01-18 10:04:11
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
0026 class IntTools_TopolTool;
0027 DEFINE_STANDARD_HANDLE(IntTools_TopolTool, Adaptor3d_TopolTool)
0028
0029
0030
0031 class IntTools_TopolTool : public Adaptor3d_TopolTool
0032 {
0033
0034 public:
0035
0036
0037
0038
0039 Standard_EXPORT IntTools_TopolTool();
0040
0041
0042
0043 Standard_EXPORT IntTools_TopolTool(const Handle(Adaptor3d_Surface)& theSurface);
0044
0045
0046
0047
0048
0049
0050 Standard_EXPORT virtual void Initialize() Standard_OVERRIDE;
0051
0052
0053
0054 Standard_EXPORT virtual void Initialize (const Handle(Adaptor3d_Surface)& theSurface) Standard_OVERRIDE;
0055
0056 Standard_EXPORT virtual void ComputeSamplePoints() Standard_OVERRIDE;
0057
0058
0059
0060 Standard_EXPORT virtual Standard_Integer NbSamplesU() Standard_OVERRIDE;
0061
0062
0063
0064 Standard_EXPORT virtual Standard_Integer NbSamplesV() Standard_OVERRIDE;
0065
0066
0067
0068 Standard_EXPORT virtual Standard_Integer NbSamples() Standard_OVERRIDE;
0069
0070
0071
0072
0073
0074
0075 Standard_EXPORT virtual void SamplePoint (const Standard_Integer Index, gp_Pnt2d& P2d, gp_Pnt& P3d) Standard_OVERRIDE;
0076
0077
0078
0079
0080
0081
0082
0083 Standard_EXPORT virtual void SamplePnts (const Standard_Real theDefl, const Standard_Integer theNUmin, const Standard_Integer theNVmin) Standard_OVERRIDE;
0084
0085
0086
0087
0088 DEFINE_STANDARD_RTTIEXT(IntTools_TopolTool,Adaptor3d_TopolTool)
0089
0090 protected:
0091
0092
0093
0094
0095 private:
0096
0097
0098 Standard_Integer myNbSmplU;
0099 Standard_Integer myNbSmplV;
0100 Standard_Real myU0;
0101 Standard_Real myV0;
0102 Standard_Real myDU;
0103 Standard_Real myDV;
0104
0105
0106 };
0107
0108
0109
0110
0111
0112
0113
0114 #endif