Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/JohnCoene/arframer
📦 Augmented Reality in R
https://github.com/JohnCoene/arframer
a-frame rstats
Last synced: 3 months ago
JSON representation
📦 Augmented Reality in R
- Host: GitHub
- URL: https://github.com/JohnCoene/arframer
- Owner: JohnCoene
- License: other
- Created: 2018-08-22T10:16:37.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-10-15T15:52:35.000Z (about 4 years ago)
- Last Synced: 2024-05-01T15:29:10.712Z (6 months ago)
- Topics: a-frame, rstats
- Language: R
- Homepage: https://arframer.john-coene.com
- Size: 524 KB
- Stars: 12
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-shiny-extensions - arframer - Augmented Reality in R based on AR.js. (Visualization / Augmented and Virtual Reality)
README
# arframer
[AR.js](https://github.com/jeromeetienne/AR.js) for [aframer](https://aframer.john-coene.com/).
## Installation
``` r
# install.packages("devtools")
devtools::install_github("JohnCoene/arframer")
```## Example
``` r
library(aframer)
library(arframer)browse_aframe(
ar_scene(
a_box(
position = "0 0.5 0",
material = "opacity: 0.5;"
),
a_primitive(
"marker-camera",
list(
preset = "hiro"
)
)
)
)
```