MeshKernel
MeshKernel copied to clipboard
Deltares C++library for creating and editing meshes. It supports 1D & 2D unstructured meshes as well as curvilinear meshes.
I'm trying to generate a 2D mesh using 2D splines, but I get the following output:  I use the following code ``` splines->AddSpline(sp1, 0, sp1.size()); splines->AddSpline(sp2, 0, sp2.size()); splines->AddSpline(sp3,...
@veenstrajelmer would like to add an API that exports the geometrical information about cross sections. The use case is shown in this figure  For each crossed face the API...
In `scripts/compile_deps.sh` there's a commented out section which compiles meshkernel, with a `vim build/CMakeCache.txt`. In there I manually had to set: `OpenMP_CXX_FLAGS:STRING=-fopenmp` -> `OpenMP_CXX_FLAGS:STRING=-fopenmp -static` `OpenMP_C_FLAGS:STRING=-fopenmp` -> `OpenMP_C_FLAGS:STRING=-fopenmp -static` `OpenMP_gomp_LIBRARY:FILEPATH=/some/path/libgomp.so`...
A GeometryList can contain a representation of a MultiPolygon or Polygon with holes. The function `mkernel_mesh2d_delete` now only seems to work for a Polygon without holes (a GeometryList with -999.0...