File indexing completed on 2026-09-09 09:15:31
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _GeomInt_LineTool_HeaderFile
0018 #define _GeomInt_LineTool_HeaderFile
0019
0020 #include <GeomAdaptor_Surface.hxx>
0021 #include <GeomInt_LineConstructor.hxx>
0022 #include <IntPatch_SequenceOfLine.hxx>
0023
0024 class IntPatch_Point;
0025 class IntPatch_WLine;
0026
0027 class GeomInt_LineTool
0028 {
0029 public:
0030 DEFINE_STANDARD_ALLOC
0031
0032 Standard_EXPORT static Standard_Integer NbVertex(const Handle(IntPatch_Line)& L);
0033
0034 Standard_EXPORT static const IntPatch_Point& Vertex(const Handle(IntPatch_Line)& L,
0035 const Standard_Integer I);
0036
0037 Standard_EXPORT static Standard_Real FirstParameter(const Handle(IntPatch_Line)& L);
0038
0039 Standard_EXPORT static Standard_Real LastParameter(const Handle(IntPatch_Line)& L);
0040
0041 Standard_EXPORT static Standard_Boolean DecompositionOfWLine(
0042 const Handle(IntPatch_WLine)& theWLine,
0043 const Handle(GeomAdaptor_Surface)& theSurface1,
0044 const Handle(GeomAdaptor_Surface)& theSurface2,
0045 const Standard_Real aTolSum,
0046 const GeomInt_LineConstructor& theLConstructor,
0047 IntPatch_SequenceOfLine& theNewLines);
0048
0049 protected:
0050 private:
0051 };
0052
0053 #endif