33/*
44 Part of the Processing project - http://processing.org
55
6- Copyright (c) 2013-19 The Processing Foundation
6+ Copyright (c) 2013-20 The Processing Foundation
77 Copyright (c) 2004-12 Ben Fry and Casey Reas
88 Copyright (c) 2001-04 Massachusetts Institute of Technology
99
@@ -2732,11 +2732,11 @@ protected void rectImpl(float x1, float y1, float x2, float y2,
27322732 /**
27332733 * ( begin auto-generated from square.xml )
27342734 *
2735- * Draws a square to the screen. A square is a four-sided shape with
2736- * every angle at ninety degrees and each side is the same length.
2737- * By default, the first two parameters set the location of the
2738- * upper-left corner, the third sets the width and height. The way
2739- * these parameters are interpreted, however, may be changed with the
2735+ * Draws a square to the screen. A square is a four-sided shape with
2736+ * every angle at ninety degrees and each side is the same length.
2737+ * By default, the first two parameters set the location of the
2738+ * upper-left corner, the third sets the width and height. The way
2739+ * these parameters are interpreted, however, may be changed with the
27402740 * <b>rectMode()</b> function.
27412741 *
27422742 * ( end auto-generated )
@@ -2931,9 +2931,9 @@ protected void arcImpl(float x, float y, float w, float h,
29312931 /**
29322932 * ( begin auto-generated from circle.xml )
29332933 *
2934- * Draws a circle to the screen. By default, the first two parameters
2935- * set the location of the center, and the third sets the shape's width
2936- * and height. The origin may be changed with the <b>ellipseMode()</b>
2934+ * Draws a circle to the screen. By default, the first two parameters
2935+ * set the location of the center, and the third sets the shape's width
2936+ * and height. The origin may be changed with the <b>ellipseMode()</b>
29372937 * function.
29382938 *
29392939 * ( end auto-generated )
@@ -5167,28 +5167,28 @@ protected void textCharScreenImpl(PImage glyph,
51675167 /**
51685168 * ( begin auto-generated from push.xml )
51695169 *
5170- * The <b>push()</b> function saves the current drawing style
5171- * settings and transformations, while <b>pop()</b> restores these
5172- * settings. Note that these functions are always used together.
5173- * They allow you to change the style and transformation settings
5174- * and later return to what you had. When a new state is started
5175- * with push(), it builds on the current style and transform
5170+ * The <b>push()</b> function saves the current drawing style
5171+ * settings and transformations, while <b>pop()</b> restores these
5172+ * settings. Note that these functions are always used together.
5173+ * They allow you to change the style and transformation settings
5174+ * and later return to what you had. When a new state is started
5175+ * with push(), it builds on the current style and transform
51765176 * information.<br />
51775177 * <br />
5178- * <b>push()</b> stores information related to the current
5179- * transformation state and style settings controlled by the
5180- * following functions: <b>rotate()</b>, <b>translate()</b>,
5181- * <b>scale()</b>, <b>fill()</b>, <b>stroke()</b>, <b>tint()</b>,
5182- * <b>strokeWeight()</b>, <b>strokeCap()</b>, <b>strokeJoin()</b>,
5183- * <b>imageMode()</b>, <b>rectMode()</b>, <b>ellipseMode()</b>,
5184- * <b>colorMode()</b>, <b>textAlign()</b>, <b>textFont()</b>,
5178+ * <b>push()</b> stores information related to the current
5179+ * transformation state and style settings controlled by the
5180+ * following functions: <b>rotate()</b>, <b>translate()</b>,
5181+ * <b>scale()</b>, <b>fill()</b>, <b>stroke()</b>, <b>tint()</b>,
5182+ * <b>strokeWeight()</b>, <b>strokeCap()</b>, <b>strokeJoin()</b>,
5183+ * <b>imageMode()</b>, <b>rectMode()</b>, <b>ellipseMode()</b>,
5184+ * <b>colorMode()</b>, <b>textAlign()</b>, <b>textFont()</b>,
51855185 * <b>textMode()</b>, <b>textSize()</b>, <b>textLeading()</b>.<br />
51865186 * <br />
5187- * The <b>push()</b> and <b>pop()</b> functions were added with
5188- * Processing 3.5. They can be used in place of <b>pushMatrix()</b>,
5189- * <b>popMatrix()</b>, <b>pushStyles()</b>, and <b>popStyles()</b>.
5190- * The difference is that push() and pop() control both the
5191- * transformations (rotate, scale, translate) and the drawing styles
5187+ * The <b>push()</b> and <b>pop()</b> functions were added with
5188+ * Processing 3.5. They can be used in place of <b>pushMatrix()</b>,
5189+ * <b>popMatrix()</b>, <b>pushStyles()</b>, and <b>popStyles()</b>.
5190+ * The difference is that push() and pop() control both the
5191+ * transformations (rotate, scale, translate) and the drawing styles
51925192 * at the same time.
51935193 *
51945194 * ( end auto-generated )
@@ -5204,28 +5204,28 @@ public void push() {
52045204 /**
52055205 * ( begin auto-generated from pop.xml )
52065206 *
5207- * The <b>pop()</b> function restores the previous drawing style
5208- * settings and transformations after <b>push()</b> has changed them.
5209- * Note that these functions are always used together. They allow
5210- * you to change the style and transformation settings and later
5211- * return to what you had. When a new state is started with push(),
5207+ * The <b>pop()</b> function restores the previous drawing style
5208+ * settings and transformations after <b>push()</b> has changed them.
5209+ * Note that these functions are always used together. They allow
5210+ * you to change the style and transformation settings and later
5211+ * return to what you had. When a new state is started with push(),
52125212 * it builds on the current style and transform information.<br />
52135213 * <br />
52145214 * <br />
5215- * <b>push()</b> stores information related to the current
5216- * transformation state and style settings controlled by the
5217- * following functions: <b>rotate()</b>, <b>translate()</b>,
5218- * <b>scale()</b>, <b>fill()</b>, <b>stroke()</b>, <b>tint()</b>,
5219- * <b>strokeWeight()</b>, <b>strokeCap()</b>, <b>strokeJoin()</b>,
5220- * <b>imageMode()</b>, <b>rectMode()</b>, <b>ellipseMode()</b>,
5221- * <b>colorMode()</b>, <b>textAlign()</b>, <b>textFont()</b>,
5215+ * <b>push()</b> stores information related to the current
5216+ * transformation state and style settings controlled by the
5217+ * following functions: <b>rotate()</b>, <b>translate()</b>,
5218+ * <b>scale()</b>, <b>fill()</b>, <b>stroke()</b>, <b>tint()</b>,
5219+ * <b>strokeWeight()</b>, <b>strokeCap()</b>, <b>strokeJoin()</b>,
5220+ * <b>imageMode()</b>, <b>rectMode()</b>, <b>ellipseMode()</b>,
5221+ * <b>colorMode()</b>, <b>textAlign()</b>, <b>textFont()</b>,
52225222 * <b>textMode()</b>, <b>textSize()</b>, <b>textLeading()</b>.<br />
52235223 * <br />
5224- * The <b>push()</b> and <b>pop()</b> functions were added with
5225- * Processing 3.5. They can be used in place of <b>pushMatrix()</b>,
5226- * <b>popMatrix()</b>, <b>pushStyles()</b>, and <b>popStyles()</b>.
5227- * The difference is that push() and pop() control both the
5228- * transformations (rotate, scale, translate) and the drawing styles
5224+ * The <b>push()</b> and <b>pop()</b> functions were added with
5225+ * Processing 3.5. They can be used in place of <b>pushMatrix()</b>,
5226+ * <b>popMatrix()</b>, <b>pushStyles()</b>, and <b>popStyles()</b>.
5227+ * The difference is that push() and pop() control both the
5228+ * transformations (rotate, scale, translate) and the drawing styles
52295229 * at the same time.
52305230 *
52315231 * ( end auto-generated )
@@ -6940,7 +6940,7 @@ public void specular(int rgb) {
69406940
69416941/**
69426942 * gray number specifying value between white and black
6943- *
6943+ *
69446944 * @param gray value between black and white, by default 0 to 255
69456945 */
69466946 public void specular (float gray ) {
@@ -7019,7 +7019,7 @@ public void emissive(int rgb) {
70197019
70207020 /**
70217021 * gray number specifying value between white and black
7022- *
7022+ *
70237023 * @param gray value between black and white, by default 0 to 255
70247024 */
70257025 public void emissive (float gray ) {
0 commit comments