Skip to content

Commit 4bc1525

Browse files
committed
just removing extra spaces from auto-generated code
1 parent 67d57a7 commit 4bc1525

File tree

2 files changed

+91
-91
lines changed

2 files changed

+91
-91
lines changed

core/src/processing/core/PApplet.java

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -12169,11 +12169,11 @@ public void rect(float a, float b, float c, float d,
1216912169
/**
1217012170
* ( begin auto-generated from square.xml )
1217112171
*
12172-
* Draws a square to the screen. A square is a four-sided shape with
12173-
* every angle at ninety degrees and each side is the same length.
12174-
* By default, the first two parameters set the location of the
12175-
* upper-left corner, the third sets the width and height. The way
12176-
* these parameters are interpreted, however, may be changed with the
12172+
* Draws a square to the screen. A square is a four-sided shape with
12173+
* every angle at ninety degrees and each side is the same length.
12174+
* By default, the first two parameters set the location of the
12175+
* upper-left corner, the third sets the width and height. The way
12176+
* these parameters are interpreted, however, may be changed with the
1217712177
* <b>rectMode()</b> function.
1217812178
*
1217912179
* ( end auto-generated )
@@ -12282,9 +12282,9 @@ public void arc(float a, float b, float c, float d,
1228212282
/**
1228312283
* ( begin auto-generated from circle.xml )
1228412284
*
12285-
* Draws a circle to the screen. By default, the first two parameters
12286-
* set the location of the center, and the third sets the shape's width
12287-
* and height. The origin may be changed with the <b>ellipseMode()</b>
12285+
* Draws a circle to the screen. By default, the first two parameters
12286+
* set the location of the center, and the third sets the shape's width
12287+
* and height. The origin may be changed with the <b>ellipseMode()</b>
1228812288
* function.
1228912289
*
1229012290
* ( end auto-generated )
@@ -13326,28 +13326,28 @@ public void text(float num, float x, float y, float z) {
1332613326
/**
1332713327
* ( begin auto-generated from push.xml )
1332813328
*
13329-
* The <b>push()</b> function saves the current drawing style
13330-
* settings and transformations, while <b>pop()</b> restores these
13331-
* settings. Note that these functions are always used together.
13332-
* They allow you to change the style and transformation settings
13333-
* and later return to what you had. When a new state is started
13334-
* with push(), it builds on the current style and transform
13329+
* The <b>push()</b> function saves the current drawing style
13330+
* settings and transformations, while <b>pop()</b> restores these
13331+
* settings. Note that these functions are always used together.
13332+
* They allow you to change the style and transformation settings
13333+
* and later return to what you had. When a new state is started
13334+
* with push(), it builds on the current style and transform
1333513335
* information.<br />
1333613336
* <br />
13337-
* <b>push()</b> stores information related to the current
13338-
* transformation state and style settings controlled by the
13339-
* following functions: <b>rotate()</b>, <b>translate()</b>,
13340-
* <b>scale()</b>, <b>fill()</b>, <b>stroke()</b>, <b>tint()</b>,
13341-
* <b>strokeWeight()</b>, <b>strokeCap()</b>, <b>strokeJoin()</b>,
13342-
* <b>imageMode()</b>, <b>rectMode()</b>, <b>ellipseMode()</b>,
13343-
* <b>colorMode()</b>, <b>textAlign()</b>, <b>textFont()</b>,
13337+
* <b>push()</b> stores information related to the current
13338+
* transformation state and style settings controlled by the
13339+
* following functions: <b>rotate()</b>, <b>translate()</b>,
13340+
* <b>scale()</b>, <b>fill()</b>, <b>stroke()</b>, <b>tint()</b>,
13341+
* <b>strokeWeight()</b>, <b>strokeCap()</b>, <b>strokeJoin()</b>,
13342+
* <b>imageMode()</b>, <b>rectMode()</b>, <b>ellipseMode()</b>,
13343+
* <b>colorMode()</b>, <b>textAlign()</b>, <b>textFont()</b>,
1334413344
* <b>textMode()</b>, <b>textSize()</b>, <b>textLeading()</b>.<br />
1334513345
* <br />
13346-
* The <b>push()</b> and <b>pop()</b> functions were added with
13347-
* Processing 3.5. They can be used in place of <b>pushMatrix()</b>,
13348-
* <b>popMatrix()</b>, <b>pushStyles()</b>, and <b>popStyles()</b>.
13349-
* The difference is that push() and pop() control both the
13350-
* transformations (rotate, scale, translate) and the drawing styles
13346+
* The <b>push()</b> and <b>pop()</b> functions were added with
13347+
* Processing 3.5. They can be used in place of <b>pushMatrix()</b>,
13348+
* <b>popMatrix()</b>, <b>pushStyles()</b>, and <b>popStyles()</b>.
13349+
* The difference is that push() and pop() control both the
13350+
* transformations (rotate, scale, translate) and the drawing styles
1335113351
* at the same time.
1335213352
*
1335313353
* ( end auto-generated )
@@ -13364,28 +13364,28 @@ public void push() {
1336413364
/**
1336513365
* ( begin auto-generated from pop.xml )
1336613366
*
13367-
* The <b>pop()</b> function restores the previous drawing style
13368-
* settings and transformations after <b>push()</b> has changed them.
13369-
* Note that these functions are always used together. They allow
13370-
* you to change the style and transformation settings and later
13371-
* return to what you had. When a new state is started with push(),
13367+
* The <b>pop()</b> function restores the previous drawing style
13368+
* settings and transformations after <b>push()</b> has changed them.
13369+
* Note that these functions are always used together. They allow
13370+
* you to change the style and transformation settings and later
13371+
* return to what you had. When a new state is started with push(),
1337213372
* it builds on the current style and transform information.<br />
1337313373
* <br />
1337413374
* <br />
13375-
* <b>push()</b> stores information related to the current
13376-
* transformation state and style settings controlled by the
13377-
* following functions: <b>rotate()</b>, <b>translate()</b>,
13378-
* <b>scale()</b>, <b>fill()</b>, <b>stroke()</b>, <b>tint()</b>,
13379-
* <b>strokeWeight()</b>, <b>strokeCap()</b>, <b>strokeJoin()</b>,
13380-
* <b>imageMode()</b>, <b>rectMode()</b>, <b>ellipseMode()</b>,
13381-
* <b>colorMode()</b>, <b>textAlign()</b>, <b>textFont()</b>,
13375+
* <b>push()</b> stores information related to the current
13376+
* transformation state and style settings controlled by the
13377+
* following functions: <b>rotate()</b>, <b>translate()</b>,
13378+
* <b>scale()</b>, <b>fill()</b>, <b>stroke()</b>, <b>tint()</b>,
13379+
* <b>strokeWeight()</b>, <b>strokeCap()</b>, <b>strokeJoin()</b>,
13380+
* <b>imageMode()</b>, <b>rectMode()</b>, <b>ellipseMode()</b>,
13381+
* <b>colorMode()</b>, <b>textAlign()</b>, <b>textFont()</b>,
1338213382
* <b>textMode()</b>, <b>textSize()</b>, <b>textLeading()</b>.<br />
1338313383
* <br />
13384-
* The <b>push()</b> and <b>pop()</b> functions were added with
13385-
* Processing 3.5. They can be used in place of <b>pushMatrix()</b>,
13386-
* <b>popMatrix()</b>, <b>pushStyles()</b>, and <b>popStyles()</b>.
13387-
* The difference is that push() and pop() control both the
13388-
* transformations (rotate, scale, translate) and the drawing styles
13384+
* The <b>push()</b> and <b>pop()</b> functions were added with
13385+
* Processing 3.5. They can be used in place of <b>pushMatrix()</b>,
13386+
* <b>popMatrix()</b>, <b>pushStyles()</b>, and <b>popStyles()</b>.
13387+
* The difference is that push() and pop() control both the
13388+
* transformations (rotate, scale, translate) and the drawing styles
1338913389
* at the same time.
1339013390
*
1339113391
* ( end auto-generated )
@@ -14862,7 +14862,7 @@ public void specular(int rgb) {
1486214862

1486314863
/**
1486414864
* gray number specifying value between white and black
14865-
*
14865+
*
1486614866
* @param gray value between black and white, by default 0 to 255
1486714867
*/
1486814868
public void specular(float gray) {
@@ -14929,7 +14929,7 @@ public void emissive(int rgb) {
1492914929

1493014930
/**
1493114931
* gray number specifying value between white and black
14932-
*
14932+
*
1493314933
* @param gray value between black and white, by default 0 to 255
1493414934
*/
1493514935
public void emissive(float gray) {

core/src/processing/core/PGraphics.java

Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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

Comments
 (0)