@@ -281,6 +281,9 @@ public class PApplet implements PConstants {
281281 * @see PApplet#get(int, int, int, int)
282282 * @see PApplet#set(int, int, int)
283283 * @see PImage
284+ * @see PApplet#pixelDensity()
285+ * @see PApplet#pixelWidth
286+ * @see PApplet#pixelHeight
284287 */
285288 public int[] pixels;
286289
@@ -1210,7 +1213,8 @@ public int displayDensity(int display) {
12101213 /**
12111214 * @webref environment
12121215 * @param density 1 or 2
1213- *
1216+ * @see PApplet#pixelWidth
1217+ * @see PApplet#pixelHeight
12141218 */
12151219 public void pixelDensity(int density) {
12161220 //println(density + " " + this.pixelDensity);
@@ -2000,6 +2004,9 @@ public void fullScreen(String renderer, int display) {
20002004 * @param height height of the display window in units of pixels
20012005 * @see PApplet#width
20022006 * @see PApplet#height
2007+ * @see PApplet#setup()
2008+ * @see PApplet#settings()
2009+ * @see PApplet#fullScreen()
20032010 */
20042011 public void size(int width, int height) {
20052012 // Check to make sure the width/height have actually changed. It's ok to
@@ -12573,17 +12580,17 @@ public void bezier(float x1, float y1, float z1,
1257312580 * ( begin auto-generated from curvePoint.xml )
1257412581 *
1257512582 * Evalutes the curve at point t for points a, b, c, d. The parameter t
12576- * varies between 0 and 1, a and d are points on the curve , and b and c are
12577- * the control points. This can be done once with the x coordinates and a
12583+ * varies between 0 and 1, a and d are the control points , and b and c are
12584+ * the points on the curve . This can be done once with the x coordinates and a
1257812585 * second time with the y coordinates to get the location of a curve at t.
1257912586 *
1258012587 * ( end auto-generated )
1258112588 *
1258212589 * @webref shape:curves
12583- * @param a coordinate of first point on the curve
12584- * @param b coordinate of second point on the curve
12585- * @param c coordinate of third point on the curve
12586- * @param d coordinate of fourth point on the curve
12590+ * @param a coordinate of first control point
12591+ * @param b coordinate of first point on the curve
12592+ * @param c coordinate of second point on the curve
12593+ * @param d coordinate of second control point
1258712594 * @param t value between 0 and 1
1258812595 * @see PGraphics#curve(float, float, float, float, float, float, float, float, float, float, float, float)
1258912596 * @see PGraphics#curveVertex(float, float)
@@ -14855,6 +14862,8 @@ public void specular(int rgb) {
1485514862
1485614863/**
1485714864 * gray number specifying value between white and black
14865+ *
14866+ * @param gray value between black and white, by default 0 to 255
1485814867 */
1485914868 public void specular(float gray) {
1486014869 if (recorder != null) recorder.specular(gray);
@@ -14920,6 +14929,8 @@ public void emissive(int rgb) {
1492014929
1492114930 /**
1492214931 * gray number specifying value between white and black
14932+ *
14933+ * @param gray value between black and white, by default 0 to 255
1492314934 */
1492414935 public void emissive(float gray) {
1492514936 if (recorder != null) recorder.emissive(gray);
0 commit comments