From 3494d7a52882b3c28f8a8df2802ba3e6b19a2bb7 Mon Sep 17 00:00:00 2001 From: alignedleft Date: Fri, 11 May 2012 17:14:31 +0000 Subject: [PATCH] Parameter alignment for directionalLight(), pointLight(), and spotLight() --- core/src/processing/core/PApplet.java | 18 +++++++++--------- core/src/processing/core/PGraphics.java | 18 +++++++++--------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/core/src/processing/core/PApplet.java b/core/src/processing/core/PApplet.java index 6106e215a..07b357b16 100644 --- a/core/src/processing/core/PApplet.java +++ b/core/src/processing/core/PApplet.java @@ -13090,9 +13090,9 @@ public class PApplet extends Applet * * @webref lights_camera:lights * @usage web_application - * @param red red or hue value (depending on current color mode) - * @param green green or saturation value (depending on current color mode) - * @param blue blue or brightness value (depending on current color mode) + * @param red red value + * @param green green value + * @param blue blue value * @param nx direction along the x-axis * @param ny direction along the y-axis * @param nz direction along the z-axis @@ -13123,9 +13123,9 @@ public class PApplet extends Applet * * @webref lights_camera:lights * @usage web_application - * @param red red or hue value (depending on current color mode) - * @param green green or saturation value (depending on current color mode) - * @param blue blue or brightness value (depending on current color mode) + * @param red red value + * @param green green value + * @param blue blue value * @param x x-coordinate of the light * @param y y-coordinate of the light * @param z z-coordinate of the light @@ -13158,9 +13158,9 @@ public class PApplet extends Applet * * @webref lights_camera:lights * @usage web_application - * @param red red or hue value (depending on current color mode) - * @param green green or saturation value (depending on current color mode) - * @param blue blue or brightness value (depending on current color mode) + * @param red red value + * @param green green value + * @param blue blue value * @param x x-coordinate of the light * @param y y-coordinate of the light * @param z z-coordinate of the light diff --git a/core/src/processing/core/PGraphics.java b/core/src/processing/core/PGraphics.java index ad6126e5e..12f83f278 100644 --- a/core/src/processing/core/PGraphics.java +++ b/core/src/processing/core/PGraphics.java @@ -6227,9 +6227,9 @@ public class PGraphics extends PImage implements PConstants { * * @webref lights_camera:lights * @usage web_application - * @param red red or hue value (depending on current color mode) - * @param green green or saturation value (depending on current color mode) - * @param blue blue or brightness value (depending on current color mode) + * @param red red value + * @param green green value + * @param blue blue value * @param nx direction along the x-axis * @param ny direction along the y-axis * @param nz direction along the z-axis @@ -6258,9 +6258,9 @@ public class PGraphics extends PImage implements PConstants { * * @webref lights_camera:lights * @usage web_application - * @param red red or hue value (depending on current color mode) - * @param green green or saturation value (depending on current color mode) - * @param blue blue or brightness value (depending on current color mode) + * @param red red value + * @param green green value + * @param blue blue value * @param x x-coordinate of the light * @param y y-coordinate of the light * @param z z-coordinate of the light @@ -6291,9 +6291,9 @@ public class PGraphics extends PImage implements PConstants { * * @webref lights_camera:lights * @usage web_application - * @param red red or hue value (depending on current color mode) - * @param green green or saturation value (depending on current color mode) - * @param blue blue or brightness value (depending on current color mode) + * @param red red value + * @param green green value + * @param blue blue value * @param x x-coordinate of the light * @param y y-coordinate of the light * @param z z-coordinate of the light