From 70f9317b07b9d72cfef980a6f3a5ca6272454b9b Mon Sep 17 00:00:00 2001 From: Jacinta Date: Wed, 13 Nov 2019 15:39:51 +0400 Subject: [PATCH] Update parameter descriptions of image function --- core/src/processing/core/PGraphics.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/src/processing/core/PGraphics.java b/core/src/processing/core/PGraphics.java index 032b69928d..87e6bdcc1f 100644 --- a/core/src/processing/core/PGraphics.java +++ b/core/src/processing/core/PGraphics.java @@ -3841,7 +3841,10 @@ public void image(PImage img, float a, float b, float c, float d) { * In this method, the u, v coordinates are always based on image space * location, regardless of the current textureMode(). * - * @nowebref + * @param u1 x-coordinate for the crop begin point + * @param v1 y-coordinate for the crop begin point + * @param u2 x-coordinate for the crop end point + * @param v2 y-coordinate for the crop end point */ public void image(PImage img, float a, float b, float c, float d,