File indexing completed on 2025-01-18 10:04:09
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _IntPatch_ImpPrmIntersection_HeaderFile
0018 #define _IntPatch_ImpPrmIntersection_HeaderFile
0019
0020 #include <Adaptor3d_Surface.hxx>
0021 #include <IntPatch_SequenceOfPoint.hxx>
0022 #include <IntPatch_SequenceOfLine.hxx>
0023 #include <IntPatch_TheSOnBounds.hxx>
0024 #include <IntPatch_TheSearchInside.hxx>
0025
0026 class Adaptor3d_TopolTool;
0027
0028
0029
0030
0031 class IntPatch_ImpPrmIntersection
0032 {
0033 public:
0034
0035 DEFINE_STANDARD_ALLOC
0036
0037
0038 Standard_EXPORT IntPatch_ImpPrmIntersection();
0039
0040 Standard_EXPORT IntPatch_ImpPrmIntersection(const Handle(Adaptor3d_Surface)& Surf1, const Handle(Adaptor3d_TopolTool)& D1, const Handle(Adaptor3d_Surface)& Surf2, const Handle(Adaptor3d_TopolTool)& D2, const Standard_Real TolArc, const Standard_Real TolTang, const Standard_Real Fleche, const Standard_Real Pas);
0041
0042
0043 Standard_EXPORT void SetStartPoint (const Standard_Real U, const Standard_Real V);
0044
0045 Standard_EXPORT void Perform (const Handle(Adaptor3d_Surface)& Surf1, const Handle(Adaptor3d_TopolTool)& D1, const Handle(Adaptor3d_Surface)& Surf2, const Handle(Adaptor3d_TopolTool)& D2, const Standard_Real TolArc, const Standard_Real TolTang, const Standard_Real Fleche, const Standard_Real Pas);
0046
0047
0048 Standard_Boolean IsDone() const;
0049
0050
0051 Standard_Boolean IsEmpty() const;
0052
0053
0054 Standard_Integer NbPnts() const;
0055
0056
0057
0058 const IntPatch_Point& Point (const Standard_Integer Index) const;
0059
0060
0061 Standard_Integer NbLines() const;
0062
0063
0064
0065 const Handle(IntPatch_Line)& Line (const Standard_Integer Index) const;
0066
0067
0068
0069
0070 protected:
0071
0072
0073
0074
0075
0076 private:
0077
0078
0079
0080 Standard_Boolean done;
0081 Standard_Boolean empt;
0082 IntPatch_SequenceOfPoint spnt;
0083 IntPatch_SequenceOfLine slin;
0084 IntPatch_TheSOnBounds solrst;
0085 IntPatch_TheSearchInside solins;
0086 Standard_Boolean myIsStartPnt;
0087 Standard_Real myUStart;
0088 Standard_Real myVStart;
0089
0090
0091 };
0092
0093
0094 #include <IntPatch_ImpPrmIntersection.lxx>
0095
0096
0097
0098
0099
0100 #endif