Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 1.2 KB

README.md

File metadata and controls

39 lines (28 loc) · 1.2 KB

Travis-CI Build Status Coverage Status CRAN_Status_Badge license

Rirrlicht

R package to provide a plot API for the Irrlicht engine. Only a proof of concept.

I'm not part of the Irrlicht Engine team -- this is just an API.

Installation

1 -- Install Irrlicht.

2 -- Install this package.

# install.packages("devtools")
devtools::install_github("nevrome/Rirrlicht")

3 -- Test it.

library(Rirrlicht)

plot_irr(
  points = data.frame(
    x = rnorm(500)*200, 
    y = rnorm(500)*200, 
    z = rnorm(500)*200,
    size = rnorm(500)*10 
  )
)
  1. -- In the playground folder you can find example code on how to add raster images and meshes to the plot.