// Created on: 1992-09-28 // Created by: Remi GILET // 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 _GCE2d_MakeLine_HeaderFile #define _GCE2d_MakeLine_HeaderFile #include #include #include #include #include class gp_Ax2d; class gp_Lin2d; class gp_Pnt2d; class gp_Dir2d; //! This class implements the following algorithms used //! to create a Line from Geom2d. //! * Create a Line parallel to another and passing //! through a point. //! * Create a Line passing through 2 points. class GCE2d_MakeLine : public GCE2d_Root { public: DEFINE_STANDARD_ALLOC //! Creates a line located in 2D space with the axis placement A. //! The Location of A is the origin of the line. Standard_EXPORT GCE2d_MakeLine(const gp_Ax2d& A); //! Creates a line from a non persistent line from package gp. Standard_EXPORT GCE2d_MakeLine(const gp_Lin2d& L); //! P is the origin and V is the direction of the line. Standard_EXPORT GCE2d_MakeLine(const gp_Pnt2d& P, const gp_Dir2d& V); //! Make a Line from Geom2d parallel to another //! Lin and passing through a Pnt . Standard_EXPORT GCE2d_MakeLine(const gp_Lin2d& Lin, const gp_Pnt2d& Point); //! Make a Line from Geom2d parallel to another //! Lin at a distance . Standard_EXPORT GCE2d_MakeLine(const gp_Lin2d& Lin, const Standard_Real Dist); //! Make a Line from Geom2d passing through 2 //! Pnt ,. //! It returns false if and are confused. //! Warning //! If points P1 and P2 coincident (that is, when IsDone //! returns false), the Status function returns gce_ConfusedPoints. Standard_EXPORT GCE2d_MakeLine(const gp_Pnt2d& P1, const gp_Pnt2d& P2); //! Returns the constructed line. //! Exceptions StdFail_NotDone if no line is constructed. Standard_EXPORT const Handle(Geom2d_Line)& Value() const; operator const Handle(Geom2d_Line)& () const { return Value(); } private: Handle(Geom2d_Line) TheLine; }; #endif // _GCE2d_MakeLine_HeaderFile