Skip to content

Commit 71dfaaa

Browse files
authored
README: Remove limitations (#173)
The feature is supported in #171 Signed-off-by: Ce Gao <ce.gao@outlook.com>
1 parent e419673 commit 71dfaaa

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

readme.md

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -113,22 +113,6 @@ foreach(i=1:3) %do%
113113

114114
In practice we have only found a few R packages so far that work with Processing.R "out of the box." This is because the package must be pure R **and** all of its dependencies must also be pure R. There is [renjin list of R packages](http://packages.renjin.org/) which lists their compatibility with the renjin JVM. Any package fully supported in renjin is theoretically supported in Processing.R.
115115

116-
## Limitations
117-
118-
**Static sketches:** Processing.R does not have a good support for detecting static/active/mix mode. We recommend that all sketches be written in full active mode, defining a separate `settings`, `setup` and `draw`. Even simple sketches should be wrapped in `draw()`. For example, do not write:
119-
120-
```R
121-
line(0, 10, 90, 100)
122-
```
123-
124-
That may cause bugs. Instead, write:
125-
126-
```R
127-
draw <- function() {
128-
line(0, 10, 90, 100)
129-
}
130-
```
131-
132116
## CONTRIBUTING
133117

134118
Feel free to hack on Processing.R! [development.md](./raw-docs/development.md) will help you to get involved into the development of Processing.R.

0 commit comments

Comments
 (0)