diff --git a/core/src/processing/core/PApplet.java b/core/src/processing/core/PApplet.java index a05a17c3d..d840c6ac2 100644 --- a/core/src/processing/core/PApplet.java +++ b/core/src/processing/core/PApplet.java @@ -2349,13 +2349,6 @@ public class PApplet extends Applet * Processing communicates with the clock on your computer. The hour() function returns the current hour as a value from 0 - 23. * * ( end auto-generated ) - *
- * To convert this value to American time:
- *
int yankeeHour = (hour() % 12); - * if (yankeeHour == 0) yankeeHour = 12;- * * @webref input:time_date * @see PApplet#millis() * @see PApplet#second() @@ -2386,8 +2379,8 @@ public class PApplet extends Applet * @see PApplet#second() * @see PApplet#minute() * @see PApplet#hour() - * @see .PApplet#month() - * @see pPApplet#year() + * @see PApplet#month() + * @see PApplet#year() */ static public int day() { return Calendar.getInstance().get(Calendar.DAY_OF_MONTH); @@ -4975,8 +4968,6 @@ public class PApplet extends Applet * @see BufferedReader * @see PApplet#createWriter(String) * @see PrintWriter - * @see try - * @see catch */ public BufferedReader createReader(String filename) { try { @@ -8592,7 +8583,7 @@ public class PApplet extends Applet * pixels[] in the code, rather than g.pixels[]. * * @webref image:pixels - * @see pixels[int] + * @see PApplet#pixels[int] * @see PApplet#updatePixels() */ public void loadPixels() { @@ -8620,7 +8611,7 @@ public class PApplet extends Applet * @param x2 width of the region * @param y2 height of the region * @see PApplet#loadPixels() - * @see pixels[int] + * @see PApplet#pixels[int] */ public void updatePixels(int x1, int y1, int x2, int y2) { g.updatePixels(x1, y1, x2, y2); @@ -9670,7 +9661,7 @@ public class PApplet extends Applet * * @webref shape:loading_displaying * @see PShape - * @see PGraphics#loadShape(String) + * @see PApplet#loadShape(String) * @see PGraphics#shapeMode(int) */ public void shape(PShape shape, float x, float y, float c, float d) { diff --git a/core/src/processing/core/PGraphics.java b/core/src/processing/core/PGraphics.java index bf68b3045..ae48603cc 100644 --- a/core/src/processing/core/PGraphics.java +++ b/core/src/processing/core/PGraphics.java @@ -949,7 +949,7 @@ public class PGraphics extends PImage implements PConstants { /** * Set texture image for current shape. - * Needs to be called between @see beginShape and @see endShape + * Needs to be called between beginShape and endShape * * @param image reference to a PImage object */ @@ -960,7 +960,7 @@ public class PGraphics extends PImage implements PConstants { /** * Removes texture image for current shape. - * Needs to be called between @see beginShape and @see endShape + * Needs to be called between beginShape and endShape * */ public void noTexture() { @@ -2981,7 +2981,7 @@ public class PGraphics extends PImage implements PConstants { * * @webref shape:loading_displaying * @see PShape - * @see PGraphics#loadShape(String) + * @see PApplet#loadShape(String) * @see PGraphics#shapeMode(int) */ public void shape(PShape shape, float x, float y, float c, float d) { diff --git a/core/src/processing/core/PImage.java b/core/src/processing/core/PImage.java index d5143da6a..6efcf3ab4 100644 --- a/core/src/processing/core/PImage.java +++ b/core/src/processing/core/PImage.java @@ -1532,9 +1532,9 @@ public class PImage implements PConstants, Cloneable { * @param dh destination image height * @param mode Either BLEND, ADD, SUBTRACT, LIGHTEST, DARKEST, DIFFERENCE, EXCLUSION, MULTIPLY, SCREEN, OVERLAY, HARD_LIGHT, SOFT_LIGHT, DODGE, BURN * - * @see processing.core.PGraphics#alpha(int) - * @see processing.core.PGraphics#copy(PImage, int, int, int, int, int, int, int, int) - * @see processing.core.PImage#blendColor(int,int,int) + * @see PGraphics#alpha(int) + * @see PImage#copy(PImage, int, int, int, int, int, int, int, int) + * @see PImage#blendColor(int,int,int) */ public void blend(PImage src, int sx, int sy, int sw, int sh,