Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-09-23 09:19:25

0001 // Created on: 1999-02-11
0002 // Created by: Xuan PHAM PHU
0003 // Copyright (c) 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_makeTransition_HeaderFile
0018 #define _TopOpeBRepTool_makeTransition_HeaderFile
0019 
0020 #include <Standard.hxx>
0021 #include <Standard_DefineAlloc.hxx>
0022 
0023 #include <TopoDS_Edge.hxx>
0024 #include <TopoDS_Face.hxx>
0025 #include <gp_Pnt2d.hxx>
0026 #include <TopAbs_State.hxx>
0027 
0028 class TopOpeBRepTool_makeTransition
0029 {
0030 public:
0031   DEFINE_STANDARD_ALLOC
0032 
0033   Standard_EXPORT TopOpeBRepTool_makeTransition();
0034 
0035   Standard_EXPORT bool Initialize(const TopoDS_Edge& E,
0036                                   const double       pbef,
0037                                   const double       paft,
0038                                   const double       parE,
0039                                   const TopoDS_Face& FS,
0040                                   const gp_Pnt2d&    uv,
0041                                   const double       factor);
0042 
0043   Standard_EXPORT void Setfactor(const double factor);
0044 
0045   Standard_EXPORT double Getfactor() const;
0046 
0047   Standard_EXPORT bool IsT2d() const;
0048 
0049   Standard_EXPORT bool SetRest(const TopoDS_Edge& ES, const double parES);
0050 
0051   Standard_EXPORT bool HasRest() const;
0052 
0053   Standard_EXPORT bool MkT2donE(TopAbs_State& stb, TopAbs_State& sta) const;
0054 
0055   Standard_EXPORT bool MkT3onE(TopAbs_State& stb, TopAbs_State& sta) const;
0056 
0057   Standard_EXPORT bool MkT3dproj(TopAbs_State& stb, TopAbs_State& sta) const;
0058 
0059   Standard_EXPORT bool MkTonE(TopAbs_State& stb, TopAbs_State& sta);
0060 
0061 private:
0062   TopoDS_Edge myE;
0063   double      mypb;
0064   double      mypa;
0065   double      mypE;
0066   TopoDS_Face myFS;
0067   gp_Pnt2d    myuv;
0068   bool        hasES;
0069   TopoDS_Edge myES;
0070   double      mypES;
0071   bool        isT2d;
0072   double      myfactor;
0073 };
0074 
0075 #endif // _TopOpeBRepTool_makeTransition_HeaderFile