// 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 _GC_MakeTrimmedCylinder_HeaderFile #define _GC_MakeTrimmedCylinder_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _Handle_Geom_RectangularTrimmedSurface_HeaderFile #include #endif #ifndef _GC_Root_HeaderFile #include #endif #ifndef _Standard_Real_HeaderFile #include #endif class Geom_RectangularTrimmedSurface; class StdFail_NotDone; class gp_Pnt; class gp_Circ; class gp_Ax1; class gp_Cylinder; //! Implements construction algorithms for a trimmed
//! cylinder limited by two planes orthogonal to its axis.
//! The result is a Geom_RectangularTrimmedSurface surface.
//! A MakeTrimmedCylinder provides a framework for:
//! - defining the construction of the trimmed cylinder,
//! - implementing the construction algorithm, and
//! - consulting the results. In particular, the Value
//! function returns the constructed trimmed cylinder.
class GC_MakeTrimmedCylinder : public GC_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); } //! Make a cylindricalSurface from Geom
//! Its axis is is and its radius is the distance
//! between and .
//! The height is the distance between P1 and P2.
Standard_EXPORT GC_MakeTrimmedCylinder(const gp_Pnt& P1,const gp_Pnt& P2,const gp_Pnt& P3); //! Make a cylindricalSurface from gp by its base .
//! Its axis is the normal to the plane defined bi .
//! can be greater than zero or lower than zero.
//! In the first case the V parametric direction of the
//! result has the same orientation as the normal to .
//! In the other case it has the opposite orientation.
Standard_EXPORT GC_MakeTrimmedCylinder(const gp_Circ& Circ,const Standard_Real Height); //! Make a cylindricalSurface from gp by its
//! axis and its radius .
//! It returns NullObject if is lower than zero.
//! can be greater than zero or lower than zero.
//! In the first case the V parametric direction of the
//! result has the same orientation as .
//! In the other case it has the opposite orientation.
Standard_EXPORT GC_MakeTrimmedCylinder(const gp_Ax1& A1,const Standard_Real Radius,const Standard_Real Height); //! Make a RectangularTrimmedSurface from gp by
//! a cylinder from gp.
//! It is trimmed by the point

and the heigh .
//! can be greater than zero or lower than zero.
//! in the first case the limit section is in the side of
//! the positives V paramters of and in the other
//! side if is lower than zero.
Standard_EXPORT GC_MakeTrimmedCylinder(const gp_Cylinder& Cyl,const gp_Pnt& P,const Standard_Real Height); //! Make a RectangularTrimmedSurface from gp by
//! a cylinder from gp.
//! It is trimmed by the two points and .
//! Warning
//! If an error occurs (that is, when IsDone returns
//! false), the Status function returns:
//! - gce_NegativeRadius if Radius is less than 0.0, or
//! - gce_ConfusedPoints if the points P1 and P2 are coincident.
//! - gce_ColinearPoints if the points P1, P2 and P3 are collinear.
Standard_EXPORT GC_MakeTrimmedCylinder(const gp_Cylinder& Cyl,const gp_Pnt& P1,const gp_Pnt& P2); //! Returns the constructed trimmed cylinder.
//! Exceptions
//! StdFail_NotDone if no trimmed cylinder is constructed.
Standard_EXPORT const Handle_Geom_RectangularTrimmedSurface& Value() const; Standard_EXPORT const Handle_Geom_RectangularTrimmedSurface& Operator() const; Standard_EXPORT operator Handle_Geom_RectangularTrimmedSurface() const; protected: private: Handle_Geom_RectangularTrimmedSurface TheCyl; }; // other Inline functions and methods (like "C++: function call" methods) #endif