diff --git a/CHANGELOG.md b/CHANGELOG.md index 6611b9a..d78ad7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ - Fix quad layer bug described in issue [#??] - Implement fixed number of segments on boundary edges / periodic edges? +- Enhance interface for definition of fixed edges (similar to boundary edge definition) and add interface to define fixed edges through CSV files ### Fixed - Fixed bug in `Log.h` which resulted from the additional `static` declaration on `LOG_PROPERTIES` in commit [`5c2cebc`](https://github.com/FloSewn/TQMesh/commit/5c2cebc). diff --git a/CMakeLists.txt b/CMakeLists.txt index d70a41e..f6785de 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON) project(TQMesh LANGUAGES CXX - VERSION 1.3.2) + VERSION 1.3.3) set( BIN ${CMAKE_SOURCE_DIR}/bin ) if(WIN32) diff --git a/README.md b/README.md index 11b2cc6..291b26f 100644 --- a/README.md +++ b/README.md @@ -166,7 +166,7 @@ via CSV files. This example shows an airfoil that has been meshed in this way. Fixed edges can be defined within the domain to guide the meshing process. -TQMesh-fixed-edges +TQMesh-fixed-edges ## Output format @@ -277,7 +277,6 @@ The following plots show some performance statistics. TQMesh-QTree-Benchmark TQMesh-Mesh-Benchmark ## To Do's -* Fixed edges within domains * Enhanced quad triangle-to-quad morphing * Boundary definition via splines * Improved documentation / testing diff --git a/scripts/examples_tqmesh.sh b/scripts/examples_tqmesh.sh index 33eec6e..555727d 100755 --- a/scripts/examples_tqmesh.sh +++ b/scripts/examples_tqmesh.sh @@ -11,6 +11,7 @@ set -e ./bin/run_examples 07 ./bin/run_examples 08 ./bin/run_examples 09 +./bin/run_examples 10 if [ $? -eq 0 ]; then echo ALL TESTS PASSED