// 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 _GccEnt_QualifiedLin_HeaderFile #define _GccEnt_QualifiedLin_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _GccEnt_Position_HeaderFile #include #endif #ifndef _gp_Lin2d_HeaderFile #include #endif #ifndef _Standard_Storable_HeaderFile #include #endif #ifndef _Standard_Boolean_HeaderFile #include #endif #ifndef _Standard_PrimitiveTypes_HeaderFile #include #endif class gp_Lin2d; Standard_EXPORT const Handle(Standard_Type)& STANDARD_TYPE(GccEnt_QualifiedLin); //! Describes a qualified 2D line.
//! A qualified 2D line is a line (gp_Lin2d line) with a
//! qualifier which specifies whether the solution of a
//! construction algorithm using the qualified line (as an argument):
//! - is 'enclosed' by the line, or
//! - is built so that both the line and it are external to one another, or
//! - is undefined (all solutions apply).
//! Note: the interior of a line is defined as the left-hand
//! side of the line in relation to its orientation (i.e. when
//! moving from the start to the end of the curve).
class GccEnt_QualifiedLin { 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); } //! Constructs a qualified line by assigning the qualifier
//! Qualifier to the line Qualified.
//! Qualifier may be:
//! - GccEnt_enclosed if the solution is enclosed by the line, or
//! - GccEnt_outside if both the solution and the line are external to one another, or
//! - GccEnt_unqualified if all solutions apply.
//! Note : the interior of a line is defined as the left-hand
//! side of the line in relation to its orientation.
Standard_EXPORT GccEnt_QualifiedLin(const gp_Lin2d& Qualified,const GccEnt_Position Qualifier); //! Returns a 2D line to which the qualifier is assigned.
Standard_EXPORT gp_Lin2d Qualified() const; //! Returns the qualifier of this qualified line, if it is "enclosed" or
//! "outside", or
//! - GccEnt_noqualifier if it is unqualified.
Standard_EXPORT GccEnt_Position Qualifier() const; //! Returns true if the solution is unqualified and false in
//! the other cases.
Standard_EXPORT Standard_Boolean IsUnqualified() const; //! Returns true if the solution is Enclosed in the Lin2d and false in
//! the other cases.
Standard_EXPORT Standard_Boolean IsEnclosed() const; //! Returns true if the solution is Outside the Lin2d and false in
//! the other cases.
Standard_EXPORT Standard_Boolean IsOutside() const; GccEnt_QualifiedLin( ) { } GccEnt_Position _CSFDB_GetGccEnt_QualifiedLinTheQualifier() const { return TheQualifier; } void _CSFDB_SetGccEnt_QualifiedLinTheQualifier(const GccEnt_Position p) { TheQualifier = p; } const gp_Lin2d& _CSFDB_GetGccEnt_QualifiedLinTheQualified() const { return TheQualified; } protected: private: GccEnt_Position TheQualifier; gp_Lin2d TheQualified; }; // other Inline functions and methods (like "C++: function call" methods) #endif