From b0cf84a1a4618bf08cd59b4a286ea4ce6431f0b1 Mon Sep 17 00:00:00 2001 From: Fabian Loeschner Date: Thu, 8 Jul 2021 13:40:36 +0200 Subject: [PATCH] Update changelog --- CHANGELOG.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c89c223..eb4be8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,16 @@ ## Master +## Version 0.7.0 + - Lib: Fix a bug that caused the neighborhood search results to be incomplete - Lib: Update to `nalgebra` 0.27. with const generics and removed usage of `nalgebra` types that are deprecated + - Lib: Add a "naive" `O(n^2)` neighborhood search for testing purposes + - Lib: Rename other neighborhood search functions to `neighborhood_search_spatial_hashing` and `neighborhood_search_spatial_hashing_parallel` - CLI: Add a command line option `--output-normals` to the `reconstruct` sub-command to write mesh normals to the output file. Note that currently the normals are only computed using an area weighted average of triangle normals. - CLI: Change the `convert` sub-command to allow both conversion of particle files and conversion of mesh formats. Instead of using the `--input` option you now have to either use the `--particles` or `--mesh` option to specify the input file depending on whether you want to convert a particle or mesh file. For particles `VTK, BGEO, PLY, XYZ, JSON -> VTK, PLY` is supported. For meshes only `VTK, PLY -> OBJ` is supported. - CLI: Add JSON files as supported particle input file - CLI: Change the command line option to specify a sequence of input files from `--input-sequence-pattern` to `--input-sequence` -### Short-term goals - - Implement export of surface normals via the CLI - ## Version 0.6.1 - Lib: Add docs.rs metadata to manifest to document all features and to build only for a single target