Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:05:27

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 
0028 
0029 class TopOpeBRepTool_GeomTool 
0030 {
0031 public:
0032 
0033   DEFINE_STANDARD_ALLOC
0034 
0035   
0036   //! Boolean flags <CompC3D>, <CompPC1>, <CompPC2>
0037   //! indicate whether  the  corresponding result curves
0038   //! <C3D>, <PC1>, <PC2> of MakeCurves method  must or not
0039   //! be computed from an intersection line <L>.
0040   //! When  the line <L> is a walking one, <TypeC3D> is the
0041   //! kind  of the 3D curve <C3D>  to  compute  :
0042   //! - BSPLINE1 to compute  a BSpline of  degree 1 on the
0043   //! walking   points  of  <L>,
0044   //! - APPROX  to build  an  approximation curve on the
0045   //! walking points of <L>.
0046   Standard_EXPORT TopOpeBRepTool_GeomTool(const TopOpeBRepTool_OutCurveType TypeC3D = TopOpeBRepTool_BSPLINE1, const Standard_Boolean CompC3D = Standard_True, const Standard_Boolean CompPC1 = Standard_True, const Standard_Boolean CompPC2 = Standard_True);
0047   
0048   Standard_EXPORT void Define (const TopOpeBRepTool_OutCurveType TypeC3D, const Standard_Boolean CompC3D, const Standard_Boolean CompPC1, const Standard_Boolean CompPC2);
0049   
0050   Standard_EXPORT void Define (const TopOpeBRepTool_OutCurveType TypeC3D);
0051   
0052   Standard_EXPORT void DefineCurves (const Standard_Boolean CompC3D);
0053   
0054   Standard_EXPORT void DefinePCurves1 (const Standard_Boolean CompPC1);
0055   
0056   Standard_EXPORT void DefinePCurves2 (const Standard_Boolean CompPC2);
0057   
0058   Standard_EXPORT void Define (const TopOpeBRepTool_GeomTool& GT);
0059   
0060   Standard_EXPORT void GetTolerances (Standard_Real& tol3d, Standard_Real& tol2d) const;
0061   
0062   Standard_EXPORT void SetTolerances (const Standard_Real tol3d, const Standard_Real tol2d);
0063   
0064   Standard_EXPORT Standard_Integer NbPntMax() const;
0065   
0066   Standard_EXPORT void SetNbPntMax (const Standard_Integer NbPntMax);
0067   
0068   Standard_EXPORT TopOpeBRepTool_OutCurveType TypeC3D() const;
0069   
0070   Standard_EXPORT Standard_Boolean CompC3D() const;
0071   
0072   Standard_EXPORT Standard_Boolean CompPC1() const;
0073   
0074   Standard_EXPORT Standard_Boolean CompPC2() const;
0075 
0076 
0077 
0078 
0079 protected:
0080 
0081 
0082 
0083   TopOpeBRepTool_OutCurveType myTypeC3D;
0084   Standard_Boolean myCompC3D;
0085   Standard_Boolean myCompPC1;
0086   Standard_Boolean myCompPC2;
0087 
0088 
0089 private:
0090 
0091 
0092 
0093   Standard_Real myTol3d;
0094   Standard_Real myTol2d;
0095   Standard_Integer myNbPntMax;
0096 
0097 
0098 };
0099 
0100 
0101 
0102 
0103 
0104 
0105 
0106 #endif // _TopOpeBRepTool_GeomTool_HeaderFile