Skip to content

Commit

Permalink
bump version, up dependency versions, docs+test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dfsp-spirit committed Mar 25, 2022
1 parent 495ccbc commit 8fa8751
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
8 changes: 4 additions & 4 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
Package: haze
Type: Package
Title: Smoothing of per-Vertex Data on Triangular Meshes
Version: 0.0.1
Version: 0.1.0
Authors@R: person("Tim", "Schäfer", role = c("aut", "cre"), email = "ts+code@rcmd.org", comment = c(ORCID = "0000-0002-3683-8070"))
Maintainer: Tim Schäfer <ts+code@rcmd.org>
Description: Smoothing of per-vertex data on triangular meshes. Supports nearest-neighbor smoothing and Gaussian smoothing based on geodesic distances.
Description: Smoothing of per-vertex data on triangular meshes, sub mesh creation based on vertex indices, per-vertrex data interpolation based on k-d trees.
License: MIT + file LICENSE
Encoding: UTF-8
URL: https://github.com/dfsp-spirit/haze
BugReports: https://github.com/dfsp-spirit/haze/issues
SystemRequirements: C++11
Imports:
freesurferformats (>= 0.1.14),
freesurferformats (>= 0.1.17),
Rcpp (>= 1.0.6),
Rvcg (>= 0.20.2)
Suggests:
knitr,
rmarkdown,
testthat (>= 3.0.0),
rgl,
fsbrain (>= 0.4.3)
fsbrain (>= 0.5.3)
VignetteBuilder: knitr
RoxygenNote: 7.1.2
Config/testthat/edition: 3
Expand Down
2 changes: 1 addition & 1 deletion man/linear_interpolate_kdtree.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions tests/testthat/test_kdtree.R
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,10 @@ testthat::test_that("One can map per-vertex data between spherical meshes.", {
# but it is very easy to see it. Here is how you can check:
do_plot = FALSE;
if(do_plot) {
fsbrain::vis.fs.surface(source_mesh, per_vertex_data = source_pervertex_data);
fsbrain::vis.fs.surface(dest_mesh, per_vertex_data = dest_pervertex_data);
if(requireNamespace("fsbrain", quietly = TRUE)) {
fsbrain::vis.fs.surface(source_mesh, per_vertex_data = source_pervertex_data);
fsbrain::vis.fs.surface(dest_mesh, per_vertex_data = dest_pervertex_data);
}
}
})

Expand Down

0 comments on commit 8fa8751

Please sign in to comment.