-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.Rmd
More file actions
31 lines (25 loc) · 1.5 KB
/
README.Rmd
File metadata and controls
31 lines (25 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
output:
md_document:
variant: markdown_github
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-"
)
```
# nanodev
[](https://travis-ci.org/thomasp85/nanodev) [](https://ci.appveyor.com/project/thomasp85/nanodev) [](https://CRAN.R-project.org/package=nanodev) [](https://CRAN.R-project.org/package=nanodev)
**HIGHLY EXPERIMENTAL WIP - DOES NOT WORK**
In order for R to produce graphics it must have a device to put the graphics in.
Many of these exists, both window-based (e.g. `X11()`) and file-based (e.g.
`png()`). While the graphics performance of R is highly dependent on the
performance of your plotting R code, as well as the underlying base or grid
graphics code it calls, the speed of the graphics device is also important as it
defines the speed with which the graphic instructions can be executed. `nanodev`
is an attempt to provide a modern, fast, high quality graphic device for R based
on the [NanoVG](https://github.com/memononen/nanovg) C++ library, which provides
an antialiased 2D vector drawing library on top of OpenGL.