File indexing completed on 2026-09-14 09:16:22
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _TopOpeBRepTool_GeomTool_HeaderFile
0018 #define _TopOpeBRepTool_GeomTool_HeaderFile
0019
0020 #include <Standard.hxx>
0021 #include <Standard_DefineAlloc.hxx>
0022 #include <Standard_Handle.hxx>
0023
0024 #include <TopOpeBRepTool_OutCurveType.hxx>
0025 #include <Standard_Integer.hxx>
0026
0027 class TopOpeBRepTool_GeomTool
0028 {
0029 public:
0030 DEFINE_STANDARD_ALLOC
0031
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041
0042 Standard_EXPORT TopOpeBRepTool_GeomTool(
0043 const TopOpeBRepTool_OutCurveType TypeC3D = TopOpeBRepTool_BSPLINE1,
0044 const bool CompC3D = true,
0045 const bool CompPC1 = true,
0046 const bool CompPC2 = true);
0047
0048 Standard_EXPORT void Define(const TopOpeBRepTool_OutCurveType TypeC3D,
0049 const bool CompC3D,
0050 const bool CompPC1,
0051 const bool CompPC2);
0052
0053 Standard_EXPORT void Define(const TopOpeBRepTool_OutCurveType TypeC3D);
0054
0055 Standard_EXPORT void DefineCurves(const bool CompC3D);
0056
0057 Standard_EXPORT void DefinePCurves1(const bool CompPC1);
0058
0059 Standard_EXPORT void DefinePCurves2(const bool CompPC2);
0060
0061 Standard_EXPORT void Define(const TopOpeBRepTool_GeomTool& GT);
0062
0063 Standard_EXPORT void GetTolerances(double& tol3d, double& tol2d) const;
0064
0065 Standard_EXPORT void SetTolerances(const double tol3d, const double tol2d);
0066
0067 Standard_EXPORT int NbPntMax() const;
0068
0069 Standard_EXPORT void SetNbPntMax(const int NbPntMax);
0070
0071 Standard_EXPORT TopOpeBRepTool_OutCurveType TypeC3D() const;
0072
0073 Standard_EXPORT bool CompC3D() const;
0074
0075 Standard_EXPORT bool CompPC1() const;
0076
0077 Standard_EXPORT bool CompPC2() const;
0078
0079 protected:
0080 TopOpeBRepTool_OutCurveType myTypeC3D;
0081 bool myCompC3D;
0082 bool myCompPC1;
0083 bool myCompPC2;
0084
0085 private:
0086 double myTol3d;
0087 double myTol2d;
0088 int myNbPntMax;
0089 };
0090
0091 #endif