Skip to content

Commit 13fa808

Browse files
committed
space removal
1 parent dd9f240 commit 13fa808

File tree

1 file changed

+43
-43
lines changed

1 file changed

+43
-43
lines changed

core/src/processing/core/PApplet.java

Lines changed: 43 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -12162,11 +12162,11 @@ public void rect(float a, float b, float c, float d,
1216212162
/**
1216312163
* ( begin auto-generated from square.xml )
1216412164
*
12165-
* Draws a square to the screen. A square is a four-sided shape with
12166-
* every angle at ninety degrees and each side is the same length.
12167-
* By default, the first two parameters set the location of the
12168-
* upper-left corner, the third sets the width and height. The way
12169-
* these parameters are interpreted, however, may be changed with the
12165+
* Draws a square to the screen. A square is a four-sided shape with
12166+
* every angle at ninety degrees and each side is the same length.
12167+
* By default, the first two parameters set the location of the
12168+
* upper-left corner, the third sets the width and height. The way
12169+
* these parameters are interpreted, however, may be changed with the
1217012170
* <b>rectMode()</b> function.
1217112171
*
1217212172
* ( end auto-generated )
@@ -12275,9 +12275,9 @@ public void arc(float a, float b, float c, float d,
1227512275
/**
1227612276
* ( begin auto-generated from circle.xml )
1227712277
*
12278-
* Draws a circle to the screen. By default, the first two parameters
12279-
* set the location of the center, and the third sets the shape's width
12280-
* and height. The origin may be changed with the <b>ellipseMode()</b>
12278+
* Draws a circle to the screen. By default, the first two parameters
12279+
* set the location of the center, and the third sets the shape's width
12280+
* and height. The origin may be changed with the <b>ellipseMode()</b>
1228112281
* function.
1228212282
*
1228312283
* ( end auto-generated )
@@ -13319,28 +13319,28 @@ public void text(float num, float x, float y, float z) {
1331913319
/**
1332013320
* ( begin auto-generated from push.xml )
1332113321
*
13322-
* The <b>push()</b> function saves the current drawing style
13323-
* settings and transformations, while <b>pop()</b> restores these
13324-
* settings. Note that these functions are always used together.
13325-
* They allow you to change the style and transformation settings
13326-
* and later return to what you had. When a new state is started
13327-
* with push(), it builds on the current style and transform
13322+
* The <b>push()</b> function saves the current drawing style
13323+
* settings and transformations, while <b>pop()</b> restores these
13324+
* settings. Note that these functions are always used together.
13325+
* They allow you to change the style and transformation settings
13326+
* and later return to what you had. When a new state is started
13327+
* with push(), it builds on the current style and transform
1332813328
* information.<br />
1332913329
* <br />
13330-
* <b>push()</b> stores information related to the current
13331-
* transformation state and style settings controlled by the
13332-
* following functions: <b>rotate()</b>, <b>translate()</b>,
13333-
* <b>scale()</b>, <b>fill()</b>, <b>stroke()</b>, <b>tint()</b>,
13334-
* <b>strokeWeight()</b>, <b>strokeCap()</b>, <b>strokeJoin()</b>,
13335-
* <b>imageMode()</b>, <b>rectMode()</b>, <b>ellipseMode()</b>,
13336-
* <b>colorMode()</b>, <b>textAlign()</b>, <b>textFont()</b>,
13330+
* <b>push()</b> stores information related to the current
13331+
* transformation state and style settings controlled by the
13332+
* following functions: <b>rotate()</b>, <b>translate()</b>,
13333+
* <b>scale()</b>, <b>fill()</b>, <b>stroke()</b>, <b>tint()</b>,
13334+
* <b>strokeWeight()</b>, <b>strokeCap()</b>, <b>strokeJoin()</b>,
13335+
* <b>imageMode()</b>, <b>rectMode()</b>, <b>ellipseMode()</b>,
13336+
* <b>colorMode()</b>, <b>textAlign()</b>, <b>textFont()</b>,
1333713337
* <b>textMode()</b>, <b>textSize()</b>, <b>textLeading()</b>.<br />
1333813338
* <br />
13339-
* The <b>push()</b> and <b>pop()</b> functions were added with
13340-
* Processing 3.5. They can be used in place of <b>pushMatrix()</b>,
13341-
* <b>popMatrix()</b>, <b>pushStyles()</b>, and <b>popStyles()</b>.
13342-
* The difference is that push() and pop() control both the
13343-
* transformations (rotate, scale, translate) and the drawing styles
13339+
* The <b>push()</b> and <b>pop()</b> functions were added with
13340+
* Processing 3.5. They can be used in place of <b>pushMatrix()</b>,
13341+
* <b>popMatrix()</b>, <b>pushStyles()</b>, and <b>popStyles()</b>.
13342+
* The difference is that push() and pop() control both the
13343+
* transformations (rotate, scale, translate) and the drawing styles
1334413344
* at the same time.
1334513345
*
1334613346
* ( end auto-generated )
@@ -13357,28 +13357,28 @@ public void push() {
1335713357
/**
1335813358
* ( begin auto-generated from pop.xml )
1335913359
*
13360-
* The <b>pop()</b> function restores the previous drawing style
13361-
* settings and transformations after <b>push()</b> has changed them.
13362-
* Note that these functions are always used together. They allow
13363-
* you to change the style and transformation settings and later
13364-
* return to what you had. When a new state is started with push(),
13360+
* The <b>pop()</b> function restores the previous drawing style
13361+
* settings and transformations after <b>push()</b> has changed them.
13362+
* Note that these functions are always used together. They allow
13363+
* you to change the style and transformation settings and later
13364+
* return to what you had. When a new state is started with push(),
1336513365
* it builds on the current style and transform information.<br />
1336613366
* <br />
1336713367
* <br />
13368-
* <b>push()</b> stores information related to the current
13369-
* transformation state and style settings controlled by the
13370-
* following functions: <b>rotate()</b>, <b>translate()</b>,
13371-
* <b>scale()</b>, <b>fill()</b>, <b>stroke()</b>, <b>tint()</b>,
13372-
* <b>strokeWeight()</b>, <b>strokeCap()</b>, <b>strokeJoin()</b>,
13373-
* <b>imageMode()</b>, <b>rectMode()</b>, <b>ellipseMode()</b>,
13374-
* <b>colorMode()</b>, <b>textAlign()</b>, <b>textFont()</b>,
13368+
* <b>push()</b> stores information related to the current
13369+
* transformation state and style settings controlled by the
13370+
* following functions: <b>rotate()</b>, <b>translate()</b>,
13371+
* <b>scale()</b>, <b>fill()</b>, <b>stroke()</b>, <b>tint()</b>,
13372+
* <b>strokeWeight()</b>, <b>strokeCap()</b>, <b>strokeJoin()</b>,
13373+
* <b>imageMode()</b>, <b>rectMode()</b>, <b>ellipseMode()</b>,
13374+
* <b>colorMode()</b>, <b>textAlign()</b>, <b>textFont()</b>,
1337513375
* <b>textMode()</b>, <b>textSize()</b>, <b>textLeading()</b>.<br />
1337613376
* <br />
13377-
* The <b>push()</b> and <b>pop()</b> functions were added with
13378-
* Processing 3.5. They can be used in place of <b>pushMatrix()</b>,
13379-
* <b>popMatrix()</b>, <b>pushStyles()</b>, and <b>popStyles()</b>.
13380-
* The difference is that push() and pop() control both the
13381-
* transformations (rotate, scale, translate) and the drawing styles
13377+
* The <b>push()</b> and <b>pop()</b> functions were added with
13378+
* Processing 3.5. They can be used in place of <b>pushMatrix()</b>,
13379+
* <b>popMatrix()</b>, <b>pushStyles()</b>, and <b>popStyles()</b>.
13380+
* The difference is that push() and pop() control both the
13381+
* transformations (rotate, scale, translate) and the drawing styles
1338213382
* at the same time.
1338313383
*
1338413384
* ( end auto-generated )

0 commit comments

Comments
 (0)