-
Notifications
You must be signed in to change notification settings - Fork 40
Module Tesselator
The geometry entities are tesselated in gotools-core in the gotools-core/tesselator submodule. Depending on the type of the geometry object, the result of the tesselation is stored in GenericTriMesh, LineStrip, QuadMesh or RegularMesh, which all inherit the abstract class GeneralMesh. The tesselators in this module relate to a given resolution in each parameter direction of the geometry object.
A curve is tesselated by the class CurveTesselator and the tesselated curve is returned by the function CurveTesselator::getMesh() as a shared pointer to a LineStrip object. A rectangular surface is tesselated in RectGridTesselator and the tesselator returns a shared pointer to a RegularMesh. The triangles produced during tesselation are organized in a set of triangle strips. This structure is taken advantage of to improve the drawing efficiency. A trimmed surface is tesselated by ParametricSurfaceTesselator and the tesselation is represented as an unorganized bunch of triangles. The output from the functionality in the tesselation module is taken as input to the GoTools viewers and the actual drawing is performed using openGL.
GoTools is the group name of many interdependent C++ software modules developed by the geometry group at SINTEF Digital, Department of Mathematics and Cybernetics. Starting around the year 2000, GoTools software has been developed for a range of different applications in many different projects. Most of the functionality is related to geometry, and in particular spline representations of geometry, see the highlights and overview of functionality. For more idetail, see GoTools manual.
GoTools is offered with the GNU Affero General Public License version 3. Alternatively, you can be released from the requirements of the license by purchasing a commercial license. Buying such a license is mandatory as soon as you develop commercial activities involving the GoTools library without disclosing the source code of your own applications.
Getting started
Miscellaneous
Functionality
- Modules
- gotools-core
- compositemodel
- implicitization
- igeslib
- intersections
- isogeometric_model
- lrsplines2D
- lrsplines3D
- parametrization
- qualitymodule
- topology
- trivariate
- trivariatemodel
- viewlib
Dependencies