C++
struct AcGe { GE_DLLDATAEXIMP const AcGeLibVersion gLibVersion; enum { eGood, eBad }; enum EntityId { kEntity2d, kEntity3d, kPointEnt2d, kPointEnt3d, kPosition2d, kPosition3d, kPointOnCurve2d, kPointOnCurve3d, kPointOnSurface, kBoundedPlane, kCircArc2d, kCircArc3d, kConic2d, kConic3d, kCurve2d, kCurve3d, kEllipArc2d, kEllipArc3d, kLine2d, kLine3d, kLinearEnt2d, kLinearEnt3d, kLineSeg2d, kLineSeg3d, kPlanarEnt, kPlane, kRay2d, kRay3d, kSurface, kSphere, kCylinder, kTorus, kCone, kSplineEnt2d, kPolyline2d, kAugPolyline2d, kNurbCurve2d, kDSpline2d, kCubicSplineCurve2d, kSplineEnt3d, kPolyline3d, kAugPolyline3d, kNurbCurve3d, kDSpline3d, kCubicSplineCurve3d, kTrimmedCrv2d, kCompositeCrv2d, kCompositeCrv3d, kExternalSurface, kNurbSurface, kTrimmedSurface, kOffsetSurface, kEnvelope2d, kCurveBoundedSurface, kExternalCurve3d, kExternalCurve2d, kSurfaceCurve2dTo3d, kSurfaceCurve3dTo2d, kExternalBoundedSurface, kCurveCurveInt2d, kCurveCurveInt3d, kBoundBlock2d, kBoundBlock3d, kOffsetCurve2d, kOffsetCurve3d, kPolynomCurve3d, kBezierCurve3d, kObject, kFitData3d, kHatch, kTrimmedCurve2d, kTrimmedCurve3d, kCurveSampleData, kEllipCone, kEllipCylinder, kIntervalBoundBlock, kClipBoundary2d, kExternalObject, kCurveSurfaceInt, kSurfaceSurfaceInt, kHelix }; enum ExternalEntityKind { kAcisEntity = 0, kExternalEntityUndefined }; enum PointContainment { kInside, kOutside, kOnBoundary }; enum NurbSurfaceProperties { kOpen = 0x01, kClosed = 0x02, kPeriodic = 0x04, kRational = 0x08, kNoPoles = 0x10, kPoleAtMin = 0x20, kPoleAtMax = 0x40, kPoleAtBoth = 0x80 }; enum OffsetCrvExtType { kFillet, kChamfer, kExtend }; enum AcGeXConfig { kNotDefined = 1<<0, kUnknown = 1<<1, kLeftRight = 1<<2, kRightLeft = 1<<3, kLeftLeft = 1<<4, kRightRight = 1<<5, kPointLeft = 1<<6, kPointRight = 1<<7, kLeftOverlap = 1<<8, kOverlapLeft = 1<<9, kRightOverlap = 1<<10, kOverlapRight = 1<<11, kOverlapStart = 1<<12, kOverlapEnd = 1<<13, kOverlapOverlap = 1<<14 }; enum BooleanType { kUnion, kSubtract, kCommon }; enum ClipError { eOk, eInvalidClipBoundary, eNotInitialized }; enum ClipCondition { kInvalid, kAllSegmentsInside, kSegmentsIntersect, kAllSegmentsOutsideZeroWinds, kAllSegmentsOutsideOddWinds, kAllSegmentsOutsideEvenWinds }; enum ErrorCondition { kOk, k0This, k0Arg1, k0Arg2, kPerpendicularArg1Arg2, kEqualArg1Arg2, kEqualArg1Arg3, kEqualArg2Arg3, kLinearlyDependentArg1Arg2Arg3, kArg1TooBig, kArg1OnThis, kArg1InsideThis }; enum csiConfig { kXUnknown, kXOut, kXIn, kXTanOut, kXTanIn, kXCoincident, kXCoincidentUnbounded }; enum ssiType { kSSITransverse, kSSITangent, kSSIAntiTangent }; enum ssiConfig { kSSIUnknown, kSSIOut, kSSIIn, kSSICoincident }; enum AcGeIntersectError { kXXOk, kXXIndexOutOfRange, kXXWrongDimensionAtIndex, kXXUnknown }; enum KnotParameterization { kChord = 0, kSqrtChord, kUniform, kCustomParameterization = 15, kNotDefinedKnotParam = 16 }; };
File
gegblge.h
Members
Members | Description |
---|---|
gLibVersion | Version of the AcGe library being used |
kHelix | Indicates the entity is a helix |
kXOut | Transverse. Curve neighborhood is outside the surface. |
kXIn | Transverse. Curve neighborhood is inside the surface. |
kXTanOut | Tangent. Curve neighborhood is outside the surface. |
kXTanIn | Tangent. Curve neighborhood is inside the surface. |
kXCoincident | Non-zero length. Point is on the intersection boundary. |
kXCoincidentUnbounded | Non-zero length. Point is an arbitrary point on an unbounded intersection. |
kSSITransverse | Non-tangent intersection. |
kSSITangent | Tangent intersection. Surface normals identical at any point within the component. |
kSSIAntiTangent | Tangent intersection. Surface normals opposite at any point within the component. |
kSSIOut | Neighborhood is outside the surface. |
kSSIIn | Neighborhood is inside the surface. |
kSSICoincident | Non-zero area intersection. |
Description
Provides a namespace-like struct for gelib.
The header file gegblabb.h contains const definitions for the enumerated type values in the AcGe structure so that they can be used without the "AcGe::" scope resolution qualifier. For example, if the header file gegblabb.h is #included in the source file, then the declaration
const AcGe::EntityId kEntity2d = AcGe::kEntity2d;
is present and kEntity2d can be used instead of AcGe::kEntity2d.
This should only be used when you are certain there will be no name conflicts.