File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
example1/java/src/main/java/test Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ public class Example1Sketch extends SketchBase {
7878 String msg = " Hello from Java!" ;
7979 PImage img = createImage(200 , 200 , RGB );
8080
81- // call Python function `alter_image(msg, img)` and get back a PImage
81+ // call Python function `alter_image(msg, img)` and get back a PImage object
8282 PImage imgResponse = (PImage ) callPython(" test_transfer" , msg, img);
8383 image(imgResponse, 100 , 100 );
8484
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public class Example1Sketch extends SketchBase {
2222 String msg = " Hello from Java!" ;
2323 PImage img = createImage(200 , 200 , RGB );
2424
25- // call Python function `alter_image(msg, img)` and get back a PImage
25+ // call Python function `alter_image(msg, img)` and get back a PImage object
2626 PImage imgResponse = (PImage ) callPython(" test_transfer" , msg, img);
2727 image(imgResponse, 100 , 100 );
2828
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ public void setup() {
1313 String msg = "Hello from Java!" ;
1414 PImage img = createImage (200 , 200 , RGB );
1515
16- // call Python function `alter_image(msg, img)` and get back a PImage
16+ // call Python function `alter_image(msg, img)` and get back a PImage object
1717 PImage imgResponse = (PImage ) callPython ("test_transfer" , msg , img );
1818 image (imgResponse , 100 , 100 );
1919
You can’t perform that action at this time.
0 commit comments