xmsmesh
1.0
|
xmsmesh is a meshing library used in xms libraries and products.
The code is distributed under FreeBSD License (See accompanying file LICENSE or https://aquaveo.com/bsd/license.txt).
This library is available as a python module. See Python Documentation
The library supports meshing.
The following tutorials are available:
The code has numerous unit tests which use the CxxTest framework. A good way to see how to use the code is to look at the unit tests. Unit tests are located at the bottom of .cpp files within a "#if CXX_TEST" code block. Header files that are named with ".t.h" contain the test suite class definitions.
Many classes follow the interface pattern. An abstract base class is used to define the interface and a concrete implementation class is used to implement the functionality. The implementation class will be named the same as the interface class but will end in "Impl" and will only be found in the .cpp file. For example: xms::InterpIdw and xms::InterpIdwImpl. The Doxygen documentation will be for the Impl class.
More about the interface pattern can be found at the following resources:
The name "xmsmesh" comes from the "XMS" (GMS, SMS, WMS) water modeling software created by Aquaveo.