MeshKernel
|
Base class for calculating properties for a mesh. More...
#include <PropertyCalculator.hpp>
Public Member Functions | |
virtual | ~PropertyCalculator ()=default |
Destructor. | |
virtual bool | IsValid (const MeshKernelState &state, const meshkernel::Location location) const =0 |
Determine is the calculator can compute the desired results correctly. | |
virtual void | Calculate (const MeshKernelState &state, const meshkernel::Location location, const GeometryList &geometryList) const =0 |
Calculate the property. | |
virtual int | Size (const MeshKernelState &state, const meshkernel::Location location) const =0 |
Determine the size of the vector required to store the calculated properties. | |
Base class for calculating properties for a mesh.
|
pure virtual |
Calculate the property.
Implemented in meshkernelapi::OrthogonalityPropertyCalculator, meshkernelapi::EdgeLengthPropertyCalculator, and meshkernelapi::InterpolatedSamplePropertyCalculator.
|
pure virtual |
Determine is the calculator can compute the desired results correctly.
Implemented in meshkernelapi::OrthogonalityPropertyCalculator, meshkernelapi::EdgeLengthPropertyCalculator, and meshkernelapi::InterpolatedSamplePropertyCalculator.
|
pure virtual |
Determine the size of the vector required to store the calculated properties.
Implemented in meshkernelapi::OrthogonalityPropertyCalculator, meshkernelapi::EdgeLengthPropertyCalculator, and meshkernelapi::InterpolatedSamplePropertyCalculator.