Skip to content

Commit ecebe47

Browse files
author
Scott Murray
committed
Clarified img.set() param description, re: processing/processing-web-archive#153
1 parent 4896acd commit ecebe47

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

core/src/processing/core/PApplet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15250,7 +15250,7 @@ public void set(int x, int y, int c) {
1525015250
* No variations are employed, meaning that any scale, tint, or imageMode
1525115251
* settings will be ignored.
1525215252
*
15253-
* @param img image to draw on screen
15253+
* @param img image to copy into the original image
1525415254
*/
1525515255
public void set(int x, int y, PImage img) {
1525615256
if (recorder != null) recorder.set(x, y, img);

core/src/processing/core/PImage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -912,7 +912,7 @@ public void set(int x, int y, int c) {
912912
* No variations are employed, meaning that any scale, tint, or imageMode
913913
* settings will be ignored.
914914
*
915-
* @param img image to draw on screen
915+
* @param img image to copy into the original image
916916
*/
917917
public void set(int x, int y, PImage img) {
918918
int sx = 0;

0 commit comments

Comments
 (0)