From 941fa1b295963074ca644fbd25beff8abe8851df Mon Sep 17 00:00:00 2001 From: Casey Reas Date: Fri, 26 Oct 2012 19:45:05 +0000 Subject: [PATCH] Basic reference updates for 2b6 --- core/src/processing/core/PGraphics.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/processing/core/PGraphics.java b/core/src/processing/core/PGraphics.java index a249684b8..bdc044f16 100644 --- a/core/src/processing/core/PGraphics.java +++ b/core/src/processing/core/PGraphics.java @@ -1190,7 +1190,7 @@ public class PGraphics extends PImage implements PConstants { * * Sets the coordinate space for texture mapping. There are two options, * IMAGE, which refers to the actual coordinates of the image, and - * NORMALIZED, which refers to a normalized space of values ranging from 0 + * NORMAL, which refers to a normalized space of values ranging from 0 * to 1. The default mode is IMAGE. In IMAGE, if an image is 100 x 200 * pixels, mapping the image onto the entire size of a quad would require * the points (0,0) (0,100) (100,200) (0,200). The same mapping in @@ -1198,7 +1198,7 @@ public class PGraphics extends PImage implements PConstants { * * ( end auto-generated ) * @webref image:textures - * @param mode either IMAGE or NORMALIZED + * @param mode either IMAGE or NORMAL * @see PGraphics#texture(PImage) */ public void textureMode(int mode) {