File indexing completed on 2026-09-23 09:19:25
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
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