// Created on: 1995-05-29 // Created by: Jacques GOUSSARD // Copyright (c) 1995-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 _LocOpe_PntFace_HeaderFile #define _LocOpe_PntFace_HeaderFile #include #include #include #include #include #include #include class gp_Pnt; class TopoDS_Face; class LocOpe_PntFace { public: DEFINE_STANDARD_ALLOC //! Empty constructor. Useful only for the list. Standard_EXPORT LocOpe_PntFace(); LocOpe_PntFace(const gp_Pnt& P, const TopoDS_Face& F, const TopAbs_Orientation Or, const Standard_Real Param, const Standard_Real UPar, const Standard_Real VPar); const gp_Pnt& Pnt() const; const TopoDS_Face& Face() const; TopAbs_Orientation Orientation() const; TopAbs_Orientation& ChangeOrientation(); Standard_Real Parameter() const; Standard_Real UParameter() const; Standard_Real VParameter() const; protected: private: gp_Pnt myPnt; TopoDS_Face myFace; TopAbs_Orientation myOri; Standard_Real myPar; Standard_Real myUPar; Standard_Real myVPar; }; #include #endif // _LocOpe_PntFace_HeaderFile