Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-09-14 09:16:22

0001 // Created on: 1993-06-24
0002 // Created by: Jean Yves LEBEY
0003 // Copyright (c) 1993-1999 Matra Datavision
0004 // Copyright (c) 1999-2014 OPEN CASCADE SAS
0005 //
0006 // This file is part of Open CASCADE Technology software library.
0007 //
0008 // This library is free software; you can redistribute it and/or modify it under
0009 // the terms of the GNU Lesser General Public License version 2.1 as published
0010 // by the Free Software Foundation, with special exception defined in the file
0011 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0012 // distribution for complete text of the license and disclaimer of any warranty.
0013 //
0014 // Alternatively, this file may be used under the terms of Open CASCADE
0015 // commercial license or contractual agreement.
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   //! Boolean flags <CompC3D>, <CompPC1>, <CompPC2>
0033   //! indicate whether the corresponding result curves
0034   //! <C3D>, <PC1>, <PC2> of MakeCurves method must or not
0035   //! be computed from an intersection line <L>.
0036   //! When the line <L> is a walking one, <TypeC3D> is the
0037   //! kind of the 3D curve <C3D> to compute:
0038   //! - BSPLINE1 to compute a BSpline of degree 1 on the
0039   //! walking points of <L>,
0040   //! - APPROX to build an approximation curve on the
0041   //! walking points of <L>.
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 // _TopOpeBRepTool_GeomTool_HeaderFile