R-package providing mesh manipulation routines from VCGLIB
C++ R C QMake CMake GLSL Other
Pull request Compare This branch is 9 commits ahead, 68 commits behind master.
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
R
data
inst
man
src
.Rbuildignore
.gitignore
.travis.yml
DESCRIPTION
LICENSE
NAMESPACE
README.md
cleanup
configure.ac
configure.win

README.md

Rvcg Travis Build Status License Downloads

Rvcg is an R-package providing methods for manipulations on triangular meshes by using the API of the VCGLIB library.

Installation of the R-package Rvcg from CRAN:

Within R:

   install.packages("Rvcg")

Installation of the-R package "Rvcg" (latest development code) using devtools::

install prerequisites
  1. install devtools from within R (Ubuntu/Debian users will have to install libcurl4-gnutls-dev beforehand):

     install.packages("devtools")
    
  2. Install build environment

    • Windows: Install latest version of Rtools During installation of Rtools make sure to install the toolchain, and to select "Edit the system path" (and confirming the installers suggestions).
    • OSX: Install XCODE
install Rvcg

Run the following command in R:

    require(devtools)
    install_github("zarquon42b/Rvcg", local=FALSE)