-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from ForesightMiningSoftwareCorporation/mc-fix
Fix the marching-cubes mesh extraction from the poisson reconstruction
- Loading branch information
Showing
5 changed files
with
216 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Changelog | ||
|
||
## v0.3.1 | ||
|
||
- Fix the extraction of a mesh from the poisson reconstruction. | ||
- Add `PoissonReconstruction::reconstruct_trimesh` and `::reconstruct_mesh_buffers` for extracting | ||
a triangle mesh with properly wired-up topology. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "poisson_reconstruction" | ||
repository = "https://github.com/ForesightMiningSoftwareCorporation/PoissonReconstruction" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
license = "MIT OR Apache-2.0" | ||
description = "Screened Poisson Reconstruction algorithm in Rust" | ||
authors = ["Sébastien Crozet <[email protected]>"] | ||
|
@@ -22,5 +22,6 @@ itertools = "0.10" | |
fnv = "1" | ||
|
||
[dev-dependencies] | ||
bevy = "0.9" | ||
bevy = "0.15" | ||
bevy_panorbit_camera = "0.22" | ||
ply-rs = "0.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters