You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ The following changes are present in the `main` branch of the repository and are
9
9
- Lib: Add support for "dense" `DensityMap` (borrowed & owned) as input for the marching cubes triangulation, useful for the Python bindings
10
10
- Lib: Replace usage of `DiscreteSquaredDistanceCubicKernel` by standard `CubicSplineKernel` for SPH interpolation (no noticeable performance difference)
11
11
- Lib: Enforce that `Index` types are signed integers implementing the `num_traits::Signed` trait. Currently, the reconstruction does not work (correctly) with unsigned integers.
12
-
- Lib: Make most fields of `SurfaceReconstruction` public
12
+
- Lib: Make most fields of `SurfaceReconstruction` public, remove previous getter functions
13
13
- CLI: Add some tests for the `reconstruction_pipeline` function
14
14
- CLI: Fix post-processing when particle AABB filtering is enabled
15
15
- Lib: Support subdomain "ghost particle" margins to be up to the size of the subdomain itself (previously limited to half the size)
/// Returns a reference to the surface mesh that is the result of the reconstruction
272
-
pubfnmesh(&self) -> &TriMesh3d<R>{
273
-
&self.mesh
274
-
}
275
-
276
-
/// Returns a reference to the global particle density vector if computed during the reconstruction (currently, all reconstruction approaches return this)
/// Returns a reference to the global list of per-particle neighborhood lists if computed during the reconstruction (`None` if not specified in the parameters)
0 commit comments