// This file is generated by WOK (CPPExt). // Please do not edit this file; modify original file instead. // The copyright and license terms as defined for the original file apply to // this header file considered to be the "object code" form of the original source. #ifndef _GCE2d_MakeLine_HeaderFile #define _GCE2d_MakeLine_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _Handle_Geom2d_Line_HeaderFile #include #endif #ifndef _GCE2d_Root_HeaderFile #include #endif #ifndef _Standard_Real_HeaderFile #include #endif class Geom2d_Line; class StdFail_NotDone; 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: void* operator new(size_t,void* anAddress) { return anAddress; } void* operator new(size_t size) { return Standard::Allocate(size); } void operator delete(void *anAddress) { if (anAddress) Standard::Free((Standard_Address&)anAddress); } //! 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; Standard_EXPORT const Handle_Geom2d_Line& Operator() const; Standard_EXPORT operator Handle_Geom2d_Line() const; protected: private: Handle_Geom2d_Line TheLine; }; // other Inline functions and methods (like "C++: function call" methods) #endif