1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
// 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_MakeCircle_HeaderFile
#define _GC_MakeCircle_HeaderFile
#include <Standard.hxx>
#include <Standard_DefineAlloc.hxx>
#include <Standard_Macro.hxx>
#include <Handle_Geom_Circle.hxx>
#include <GC_Root.hxx>
#include <Standard_Real.hxx>
class Geom_Circle;
class StdFail_NotDone;
class gp_Circ;
class gp_Ax2;
class gp_Pnt;
class gp_Dir;
class gp_Ax1;
//! This class implements the following algorithms used
//! to create Cirlec from Geom.
//!
//! * Create a Circle parallel to another and passing
//! though a point.
//! * Create a Circle parallel to another at the distance
//! Dist.
//! * Create a Circle passing through 3 points.
//! * Create a Circle with its center and the normal of its
//! plane and its radius.
//! * Create a Circle with its axis and radius.
//! The circle's parameter is the angle (Radian).
//! The parametrization range is [0,2*PI].
//! The circle is a closed and periodic curve.
//! The center of the circle is the Location point of its axis
//! placement. The XDirection of the axis placement defines the
//! origin of the parametrization.
class GC_MakeCircle : public GC_Root
{
public:
DEFINE_STANDARD_ALLOC
//! creates a circle from a non persistent circle C by its conversion.
Standard_EXPORT GC_MakeCircle(const gp_Circ& C);
//! A2 is the local coordinates system of the circle.
//! It is not forbidden to create a circle with Radius = 0.0
//! Status is "NegativeRadius" if Radius < 0.
Standard_EXPORT GC_MakeCircle(const gp_Ax2& A2, const Standard_Real Radius);
//! Make a Circle from Geom <TheCirc> parallel to another
//! Circ <Circ> with a distance <Dist>.
//! If Dist is greater than zero the result is enclosing
//! the circle <Circ>, else the result is enclosed by the
//! circle <Circ>.
Standard_EXPORT GC_MakeCircle(const gp_Circ& Circ, const Standard_Real Dist);
//! Make a Circle from Geom <TheCirc> parallel to another
//! Circ <Circ> and passing through a Pnt <Point>.
Standard_EXPORT GC_MakeCircle(const gp_Circ& Circ, const gp_Pnt& Point);
//! Make a Circ from gp <TheCirc> passing through 3
//! Pnt2d <P1>,<P2>,<P3>.
Standard_EXPORT GC_MakeCircle(const gp_Pnt& P1, const gp_Pnt& P2, const gp_Pnt& P3);
//! Make a Circle from Geom <TheCirc> with its center
//! <Center> and the normal of its plane <Norm> and
//! its radius <Radius>.
Standard_EXPORT GC_MakeCircle(const gp_Pnt& Center, const gp_Dir& Norm, const Standard_Real Radius);
//! Make a Circle from Geom <TheCirc> with its center
//! <Center> and the normal of its plane defined by the
//! two points <Center> and <PtAxis> and its radius <Radius>.
Standard_EXPORT GC_MakeCircle(const gp_Pnt& Center, const gp_Pnt& PtAxis, const Standard_Real Radius);
//! Make a Circle from Geom <TheCirc> with its center
//! <Center> and its radius <Radius>.
Standard_EXPORT GC_MakeCircle(const gp_Ax1& Axis, const Standard_Real Radius);
//! Returns the constructed circle.
//! Exceptions
//! StdFail_NotDone if no circle is constructed.
Standard_EXPORT const Handle(Geom_Circle)& Value() const;
Standard_EXPORT const Handle(Geom_Circle)& Operator() const;
Standard_EXPORT operator Handle_Geom_Circle() const;
protected:
private:
Handle(Geom_Circle) TheCircle;
};
#endif // _GC_MakeCircle_HeaderFile
|