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.
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
)
)
- -- In the playground folder you can find example code on how to add raster images and meshes to the plot.