// 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 _gce_MakeLin_HeaderFile #define _gce_MakeLin_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _gp_Lin_HeaderFile #include #endif #ifndef _gce_Root_HeaderFile #include #endif class StdFail_NotDone; class gp_Ax1; class gp_Pnt; class gp_Dir; class gp_Lin; //! This class implements the following algorithms used
//! to create a Lin from gp.
//! * Create a Lin parallel to another and passing
//! through a point.
//! * Create a Lin passing through 2 points.
//! * Create a lin from its axis (Ax1 from gp).
//! * Create a lin from a point and a direction.
class gce_MakeLin : public gce_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 along the axis A1.
Standard_EXPORT gce_MakeLin(const gp_Ax1& A1); //!

is the location point (origin) of the line and
//! is the direction of the line.
Standard_EXPORT gce_MakeLin(const gp_Pnt& P,const gp_Dir& V); //! Make a Lin from gp parallel to another
//! Lin and passing through a Pnt .
Standard_EXPORT gce_MakeLin(const gp_Lin& Lin,const gp_Pnt& Point); //! Make a Lin from gp passing through 2
//! Pnt ,.
//! It returns false if and are confused.
Standard_EXPORT gce_MakeLin(const gp_Pnt& P1,const gp_Pnt& P2); //! Returns the constructed line.
//! Exceptions StdFail_NotDone is raised if no line is constructed.
Standard_EXPORT const gp_Lin& Value() const; Standard_EXPORT const gp_Lin& Operator() const; Standard_EXPORT operator gp_Lin() const; protected: private: gp_Lin TheLin; }; // other Inline functions and methods (like "C++: function call" methods) #endif