File tree 2 files changed +12
-10
lines changed
2 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -328,14 +328,13 @@ private boolean isMixMode() {
328
328
*/
329
329
protected void wrapProcessingVariables () {
330
330
log ("Wrap Processing built-in variables into R top context." );
331
- this .renjinEngine .put ("width" , width );
332
- this .renjinEngine .put ("height" , height );
333
- this .renjinEngine .put ("displayWidth" , displayWidth );
334
- this .renjinEngine .put ("displayHeight" , displayHeight );
335
- this .renjinEngine .put ("focused" , focused );
336
- this .renjinEngine .put ("keyPressed" , keyPressed );
337
- this .renjinEngine .put ("frameRate" , frameRate );
338
331
// TODO: Find some ways to push constants into R.
332
+ // this.renjinEngine.put("width", width);
333
+ // this.renjinEngine.put("height", height);
334
+ // this.renjinEngine.put("displayWidth", displayWidth);
335
+ // this.renjinEngine.put("displayHeight", displayHeight);
336
+ // this.renjinEngine.put("focused", focused);
337
+ // this.renjinEngine.put("keyPressed", keyPressed);
339
338
}
340
339
341
340
/**
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ curveVertex = processing$curveVertex
43
43
delay = processing $ delay
44
44
directionalLight = processing $ directionalLight
45
45
displayDensity = processing $ displayDensity
46
- draw = processing $ draw
46
+ # draw = processing$draw
47
47
ellipse = processing $ ellipse
48
48
ellipseMode = processing $ ellipseMode
49
49
emissive = processing $ emissive
@@ -154,8 +154,8 @@ selectFolder = processing$selectFolder
154
154
selectInput = processing $ selectInput
155
155
selectOutput = processing $ selectOutput
156
156
set = processing $ set
157
- settings = processing $ settings
158
- setup = processing $ setup
157
+ # settings = processing$settings
158
+ # setup = processing$setup
159
159
shader = processing $ shader
160
160
shape = processing $ shape
161
161
shapeMode = processing $ shapeMode
@@ -190,3 +190,6 @@ translate = processing$translate
190
190
triangle = processing $ triangle
191
191
updatePixels = processing $ updatePixels
192
192
vertex = processing $ vertex
193
+
194
+ # Hack
195
+ frameCount = processing $ frameCount
You can’t perform that action at this time.
0 commit comments