// Created on: 1992-05-06 // Created by: Jacques GOUSSARD // Copyright (c) 1992-1999 Matra Datavision // Copyright (c) 1999-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #ifndef _IntPatch_TheSegmentOfTheSOnBounds_HeaderFile #define _IntPatch_TheSegmentOfTheSOnBounds_HeaderFile #include #include #include #include #include class Adaptor2d_HCurve2d; class Standard_DomainError; class Adaptor3d_HVertex; class IntPatch_ThePathPointOfTheSOnBounds; class IntPatch_TheSegmentOfTheSOnBounds { public: DEFINE_STANDARD_ALLOC //! Empty constructor. Standard_EXPORT IntPatch_TheSegmentOfTheSOnBounds(); //! Defines the concerned arc. void SetValue (const Handle(Adaptor2d_HCurve2d)& A); //! Defines the first point or the last point, //! depending on the value of the boolean First. Standard_EXPORT void SetLimitPoint (const IntPatch_ThePathPointOfTheSOnBounds& V, const Standard_Boolean First); //! Returns the geometric curve on the surface 's domain //! which is solution. const Handle(Adaptor2d_HCurve2d)& Curve() const; //! Returns True if there is a vertex (ThePathPoint) defining //! the lowest valid parameter on the arc. Standard_Boolean HasFirstPoint() const; //! Returns the first point. const IntPatch_ThePathPointOfTheSOnBounds& FirstPoint() const; //! Returns True if there is a vertex (ThePathPoint) defining //! the greatest valid parameter on the arc. Standard_Boolean HasLastPoint() const; //! Returns the last point. const IntPatch_ThePathPointOfTheSOnBounds& LastPoint() const; protected: private: Handle(Adaptor2d_HCurve2d) arc; Standard_Boolean hasfp; IntPatch_ThePathPointOfTheSOnBounds thefp; Standard_Boolean haslp; IntPatch_ThePathPointOfTheSOnBounds thelp; }; #define TheVertex Handle(Adaptor3d_HVertex) #define TheVertex_hxx #define TheArc Handle(Adaptor2d_HCurve2d) #define TheArc_hxx #define ThePathPoint IntPatch_ThePathPointOfTheSOnBounds #define ThePathPoint_hxx #define IntStart_Segment IntPatch_TheSegmentOfTheSOnBounds #define IntStart_Segment_hxx #include #undef TheVertex #undef TheVertex_hxx #undef TheArc #undef TheArc_hxx #undef ThePathPoint #undef ThePathPoint_hxx #undef IntStart_Segment #undef IntStart_Segment_hxx #endif // _IntPatch_TheSegmentOfTheSOnBounds_HeaderFile