The taxonomy of Axl abstract classes¶
The geometric types in Axl can be grouped into basic data types and abstract data types. The basic data types are comming with their implementation, providing tools
for their construction and manipulations
The abstract data types are interface classes and usally not specialized in the core of Axl. The specialization is provided by external plugins.
We describe the taxonomy of these classes, which all derive from the generic class AxlAbstractData
.
Abstract data are types of generic geometric objects which do not have necessarily an implementation.
AxlAbstractCurve¶
- axlAbstractCurveParametric: curve parameterized by one real parameter.
- axlAbstractCurveBSpline: parametric curve represented in a basis of spline functions, which are piecewise polynomial between nodes.
- axlAbstractCurveNurbs: parametric curve, which coordinate functions are the ratio of B-spline functions.
- axlAbstractCurveRational: parametric curve, which coordinate functions are the ratio of polynomial functions.
- axlAbstractCurveImplicit: curve defined by one of several implicit equations.
- axlAbstractCurveAlgebraic: implicit curve defined by one or two polynomial equations.
AxlAbstractSurface¶
- axlAbstractSurfaceParametric: surface parameterized by two real parameters.
- axlAbstractSurfaceBSpline: parametric surface represented in a tensor-product basis of spline functions, which are piecewise polynomial functions between a grid of nodes.
- axlAbstractSurfaceNurbs: parametric surface, which coordinate functions are the ratio of B-spline functions.
- axlAbstractSurfaceRational: parametric surface, which coordinate functions are the ratio of polynomial functions.
- axlAbstractSurfaceTrimmed: NURBS surface with trimmed curves in the parameter domain.
- axlAbstractSurfaceImplicit: surface defined by one implicit equations.
- axlAbstractSurfaceAlgebraic: implicit surface defined by one polynomial equation.
AxlAbstractVolume¶
- axlAbstractVolumeParametric: volume parameterized by three real parameters.
- axlAbstractVolumeDiscrete:
- axlAbstractVolumeBSpline: parametric surface represented in a tensor-product basis of spline functions
- axlAbstractVolumeNurbs: parametric volume, which coordinate functions are the ratio of B-spline functions.
- axlAbstractVolumeRational: parametric volume, which coordinate functions are the ratio of polynomial functions.