// 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_MakeCirc_HeaderFile #define _gce_MakeCirc_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _gp_Circ_HeaderFile #include #endif #ifndef _gce_Root_HeaderFile #include #endif #ifndef _Standard_Real_HeaderFile #include #endif class StdFail_NotDone; class gp_Ax2; class gp_Circ; class gp_Pnt; class gp_Dir; class gp_Pln; class gp_Ax1; //! This class implements the following algorithms used
//! to create Circ from gp.
//!
//! * Create a Circ coaxial to another and passing
//! though a point.
//! * Create a Circ coaxial to another at the distance
//! Dist.
//! * Create a Circ passing through 3 points.
//! * Create a Circ with its center and the normal of its
//! plane and its radius.
//! * Create a Circ with its center and its plane and its
//! radius.
//! * Create a Circ with its axis and radius.
//! * Create a Circ with two points giving its axis and
//! its radius.
//! * Create a Circ with is Ax2 and its Radius.
class gce_MakeCirc : 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); } //! A2 locates the circle and gives its orientation in 3D space.
//! Warnings :
//! It is not forbidden to create a circle with Radius = 0.0
//! The status is "NegativeRadius" if Radius < 0.0
Standard_EXPORT gce_MakeCirc(const gp_Ax2& A2,const Standard_Real Radius); //! Makes a Circ from gp coaxial to another
//! Circ at a distance .
//! If Dist is greater than zero the result is encloses
//! the circle , else the result is enclosed by the
//! circle .
Standard_EXPORT gce_MakeCirc(const gp_Circ& Circ,const Standard_Real Dist); //! Makes a Circ from gp coaxial to another
//! Circ and passing through a Pnt2d .
Standard_EXPORT gce_MakeCirc(const gp_Circ& Circ,const gp_Pnt& Point); //! Makes a Circ from gp passing through 3
//! Pnt2d ,,.
Standard_EXPORT gce_MakeCirc(const gp_Pnt& P1,const gp_Pnt& P2,const gp_Pnt& P3); //! Makes a Circ from gp with its center
//!
and the normal of its plane and
//! its radius .
Standard_EXPORT gce_MakeCirc(const gp_Pnt& Center,const gp_Dir& Norm,const Standard_Real Radius); //! Makes a Circ from gp with its center
//!
and the normal of its plane and
//! its radius .
Standard_EXPORT gce_MakeCirc(const gp_Pnt& Center,const gp_Pln& Plane,const Standard_Real Radius); //! Makes a Circ from gp with its center
//!
and a point giving the normal
//! of its plane and its radius .
Standard_EXPORT gce_MakeCirc(const gp_Pnt& Center,const gp_Pnt& Ptaxis,const Standard_Real Radius); //! Makes a Circ from gp with its center
//!
and its radius .
//! Warning
//! The MakeCirc class does not prevent the
//! construction of a circle with a null radius.
//! If an error occurs (that is, when IsDone returns
//! false), the Status function returns:
//! - gce_Negative Radius if:
//! - Radius is less than 0.0, or
//! - Dist is less than 0.0 and the absolute value of
//! Dist is greater than the radius of Circ;
//! - gce_IntersectionError if the points P1, P2 and
//! P3 are collinear, and the three are not coincident;
//! - gce_ConfusedPoints if two of the three points
//! P1, P2 and P3 are coincident; or
//! - gce_NullAxis if Center and Ptaxis are coincident.
Standard_EXPORT gce_MakeCirc(const gp_Ax1& Axis,const Standard_Real Radius); //! Returns the constructed circle.
//! Exceptions StdFail_NotDone if no circle is constructed.
Standard_EXPORT const gp_Circ& Value() const; Standard_EXPORT const gp_Circ& Operator() const; Standard_EXPORT operator gp_Circ() const; protected: private: gp_Circ TheCirc; }; // other Inline functions and methods (like "C++: function call" methods) #endif