Skip to content

Commit 2154956

Browse files
committed
Bump version number
1 parent d6c0a97 commit 2154956

5 files changed

Lines changed: 12 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
## Master
22

3+
### Short-term goals
4+
- Implement export of surface normals via the CLI
5+
6+
## Version 0.5.0
7+
38
The biggest new feature is a domain decomposed approach for the surface reconstruction by performing a spatial decomposition of the particle set with an octree.
49
The resulting local patches can then be processed in parallel (leaving a single layer of boundary cells per patch untriangulated to avoid incompatible boundaries).
510
Afterwards, a stitching procedure walks the octree back upwards and merges the octree leaves by averaging density values on the boundaries.
@@ -36,10 +41,6 @@ At the moment, this domain decomposition approach is only available when allowin
3641
- "Splash detection" currently does nothing
3742
- The density map is currently not returned by the reconstruction
3843

39-
### Short-term goals
40-
- Implement export of surface normals via the CLI
41-
-
42-
4344
## Version 0.4.0
4445

4546
- CLI: Add support for reading BGEO files

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ cargo install splashsurf
6666
### Basic usage
6767

6868
```
69-
splashsurf-reconstruct 0.4.0
69+
splashsurf-reconstruct 0.5.0
7070
Reconstruct a surface from particle data
7171
7272
USAGE:
@@ -147,7 +147,7 @@ splashsurf reconstruct -i data/canyon_13353401_particles.xyz --output-dir=out --
147147
```
148148
With these parameters, a scene with 13353401 particles is reconstructed in less than 3.5 seconds on a Ryzen 9 5950X. The output is a mesh with 6022105 triangles.
149149
```
150-
[2021-01-29T15:14:18.738806+01:00][splashsurf][INFO] splashsurf v0.4.0 (splashsurf)
150+
[2021-01-29T15:14:18.738806+01:00][splashsurf][INFO] splashsurf v0.5.0 (splashsurf)
151151
[2021-01-29T15:14:18.738828+01:00][splashsurf][INFO] Called with command line: target/release/splashsurf reconstruct -i data/canyon_13353401_particles.xyz --output-dir=out --particle-radius=0.011 --smoothing-length=2.0 --cube-size=1.5 --surface-threshold=0.6
152152
[2021-01-29T15:14:18.738839+01:00][splashsurf::reconstruction][INFO] Using single precision (f32) for surface reconstruction.
153153
[2021-01-29T15:14:18.738841+01:00][splashsurf::io][INFO] Reading particle dataset from "data/canyon_13353401_particles.xyz"...

splashsurf/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "splashsurf"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Fabian Löschner <loeschner@cs.rwth-aachen.de>"]
55
license = "MIT"
66
description = "Command-line tool for surface reconstruction of SPH particle data"
@@ -13,7 +13,7 @@ homepage = "https://github.com/w1th0utnam3/splashsurf"
1313
repository = "https://github.com/w1th0utnam3/splashsurf"
1414

1515
[dependencies]
16-
splashsurf_lib = { path = "../splashsurf_lib", version = "0.4", features = ["vtk_extras", "profiling"] }
16+
splashsurf_lib = { path = "../splashsurf_lib", version = "0.5", features = ["vtk_extras", "profiling"] }
1717
structopt = "0.3"
1818
log = "0.4"
1919
fern = "0.6"

splashsurf_lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "splashsurf_lib"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Fabian Löschner <loeschner@cs.rwth-aachen.de>"]
55
license = "MIT"
66
description = "Library for surface reconstruction of SPH particle data"

0 commit comments

Comments
 (0)