Skip to content

Commit cac7030

Browse files
committed
Fixes processing/processing-docs#364 by adding some 'related' references
1 parent 0f24e97 commit cac7030

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

core/src/processing/core/PApplet.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12578,7 +12578,7 @@ public void text(char[] chars, int start, int stop,
1257812578
* ignored.
1257912579
*
1258012580
* @param x1 by default, the x-coordinate of text, see rectMode() for more info
12581-
* @param y1 by default, the x-coordinate of text, see rectMode() for more info
12581+
* @param y1 by default, the y-coordinate of text, see rectMode() for more info
1258212582
* @param x2 by default, the width of the text box, see rectMode() for more info
1258312583
* @param y2 by default, the height of the text box, see rectMode() for more info
1258412584
*/
@@ -13205,6 +13205,7 @@ public void beginCamera() {
1320513205
* ( end auto-generated )
1320613206
*
1320713207
* @webref lights_camera:camera
13208+
* @see PGraphics#beginCamera()
1320813209
* @see PGraphics#camera(float, float, float, float, float, float, float, float, float)
1320913210
*/
1321013211
public void endCamera() {
@@ -13229,6 +13230,7 @@ public void endCamera() {
1322913230
* ( end auto-generated )
1323013231
*
1323113232
* @webref lights_camera:camera
13233+
* @see PGraphics#beginCamera()
1323213234
* @see PGraphics#endCamera()
1323313235
* @see PGraphics#frustum(float, float, float, float, float, float)
1323413236
*/
@@ -13373,6 +13375,7 @@ public void perspective(float fovy, float aspect, float zNear, float zFar) {
1337313375
* @param near near component of the clipping plane; must be greater than zero
1337413376
* @param far far component of the clipping plane; must be greater than the near value
1337513377
* @see PGraphics#camera(float, float, float, float, float, float, float, float, float)
13378+
* @see PGraphics#beginCamera()
1337613379
* @see PGraphics#endCamera()
1337713380
* @see PGraphics#perspective(float, float, float, float)
1337813381
*/

core/src/processing/core/PGraphics.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5720,6 +5720,7 @@ public void beginCamera() {
57205720
* ( end auto-generated )
57215721
*
57225722
* @webref lights_camera:camera
5723+
* @see PGraphics#beginCamera()
57235724
* @see PGraphics#camera(float, float, float, float, float, float, float, float, float)
57245725
*/
57255726
public void endCamera() {
@@ -5742,6 +5743,7 @@ public void endCamera() {
57425743
* ( end auto-generated )
57435744
*
57445745
* @webref lights_camera:camera
5746+
* @see PGraphics#beginCamera()
57455747
* @see PGraphics#endCamera()
57465748
* @see PGraphics#frustum(float, float, float, float, float, float)
57475749
*/
@@ -5876,6 +5878,7 @@ public void perspective(float fovy, float aspect, float zNear, float zFar) {
58765878
* @param near near component of the clipping plane; must be greater than zero
58775879
* @param far far component of the clipping plane; must be greater than the near value
58785880
* @see PGraphics#camera(float, float, float, float, float, float, float, float, float)
5881+
* @see PGraphics#beginCamera()
58795882
* @see PGraphics#endCamera()
58805883
* @see PGraphics#perspective(float, float, float, float)
58815884
*/

0 commit comments

Comments
 (0)