documentation auto-update

This commit is contained in:
Ben Fry
2016-11-30 12:09:34 -05:00
parent c7baf0f5e4
commit dc69bc3813

View File

@@ -12322,8 +12322,8 @@ public class PApplet implements PConstants {
*
* @webref image:loading_displaying
* @param img the image to display
* @param a x-coordinate of the image
* @param b y-coordinate of the image
* @param a x-coordinate of the image by default
* @param b y-coordinate of the image by default
* @see PApplet#loadImage(String, String)
* @see PImage
* @see PGraphics#imageMode(int)
@@ -12338,8 +12338,8 @@ public class PApplet implements PConstants {
/**
* @param c width to display the image
* @param d height to display the image
* @param c width to display the image by default
* @param d height to display the image by default
*/
public void image(PImage img, float a, float b, float c, float d) {
if (recorder != null) recorder.image(img, a, b, c, d);