diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-07-29 09:45:06 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-07-31 11:47:27 +0200 |
commit | 9bf147945e7888b41194cda4a1860e7531766fee (patch) | |
tree | 0501a9b2f6b85be374c312e9b78ad4e74eb6bfc7 /gnu/packages/cran.scm | |
parent | a27d172ee66472a255754bf88ae8fb4ce73ec9ad (diff) |
gnu: Add r-rvcg.
* gnu/packages/cran.scm (r-rvcg): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 5b74cb773a..63bbd84c01 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -8631,6 +8631,29 @@ converted into other popular R objects. This package provides a link between VCF data and familiar R software.") (license license:gpl3))) +(define-public r-rvcg + (package + (name "r-rvcg") + (version "0.22.1") + (source (origin + (method url-fetch) + (uri (cran-uri "Rvcg" version)) + (sha256 + (base32 + "16rr2kqw7lqb7m01pwn496zf2nr25gm6wcncz44kszjzzmv2xanv")))) + (properties `((upstream-name . "Rvcg"))) + (build-system r-build-system) + (propagated-inputs (list r-rcpp r-rcpparmadillo r-rcppeigen)) + (home-page "https://github.com/zarquon42b/Rvcg") + (synopsis "Manipulations of triangular meshes based on the VCGLIB API") + (description + "This is a package for operations on triangular meshes based on VCGLIB. +This package integrates nicely with the R-package rgl to render the meshes +processed by Rvcg. The Visualization and Computer Graphics Library (VCG for +short) is a library for manipulation, processing and displaying with OpenGL of +triangle and tetrahedral meshes.") + (license license:gpl2+))) + (define-public r-ica (package (name "r-ica") |