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
|
// 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 _GccInt_Bisec_HeaderFile
#define _GccInt_Bisec_HeaderFile
#include <Standard.hxx>
#include <Standard_DefineHandle.hxx>
#include <Handle_GccInt_Bisec.hxx>
#include <MMgt_TShared.hxx>
#include <GccInt_IType.hxx>
class Standard_DomainError;
class gp_Pnt2d;
class gp_Lin2d;
class gp_Circ2d;
class gp_Hypr2d;
class gp_Parab2d;
class gp_Elips2d;
//! The deferred class GccInt_Bisec is the root class for
//! elementary bisecting loci between two simple geometric
//! objects (i.e. circles, lines or points).
//! Bisecting loci between two geometric objects are such
//! that each of their points is at the same distance from the
//! two geometric objects. It is typically a curve, such as a
//! line, circle or conic.
//! Generally there is more than one elementary object
//! which is the solution to a bisecting loci problem: each
//! solution is described with one elementary bisecting
//! locus. For example, the bisectors of two secant straight
//! lines are two perpendicular straight lines.
//! The GccInt package provides concrete implementations
//! of the following elementary derived bisecting loci:
//! - lines, circles, ellipses, hyperbolas and parabolas, and
//! - points (not used in this context).
//! The GccAna package provides numerous algorithms for
//! computing the bisecting loci between circles, lines or
//! points, whose solutions are these types of elementary bisecting locus.
class GccInt_Bisec : public MMgt_TShared
{
public:
//! Returns the type of bisecting object (line, circle,
//! parabola, hyperbola, ellipse, point).
Standard_EXPORT virtual GccInt_IType ArcType() const = 0;
//! Returns the bisecting line when ArcType returns Pnt.
//! An exception DomainError is raised if ArcType is not a Pnt.
Standard_EXPORT virtual gp_Pnt2d Point() const;
//! Returns the bisecting line when ArcType returns Lin.
//! An exception DomainError is raised if ArcType is not a Lin.
Standard_EXPORT virtual gp_Lin2d Line() const;
//! Returns the bisecting line when ArcType returns Cir.
//! An exception DomainError is raised if ArcType is not a Cir.
Standard_EXPORT virtual gp_Circ2d Circle() const;
//! Returns the bisecting line when ArcType returns Hpr.
//! An exception DomainError is raised if ArcType is not a Hpr.
Standard_EXPORT virtual gp_Hypr2d Hyperbola() const;
//! Returns the bisecting line when ArcType returns Par.
//! An exception DomainError is raised if ArcType is not a Par.
Standard_EXPORT virtual gp_Parab2d Parabola() const;
//! Returns the bisecting line when ArcType returns Ell.
//! An exception DomainError is raised if ArcType is not an Ell.
Standard_EXPORT virtual gp_Elips2d Ellipse() const;
DEFINE_STANDARD_RTTI(GccInt_Bisec)
protected:
private:
};
#endif // _GccInt_Bisec_HeaderFile
|