mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
Added several related references to PFont and text(), per processing/processing-docs#29
This commit is contained in:
@@ -12957,6 +12957,8 @@ public class PApplet extends Applet
|
||||
* @see PFont
|
||||
* @see PGraphics#text(String, float, float)
|
||||
* @see PGraphics#textSize(float)
|
||||
* @see PGraphics#textAscent()
|
||||
* @see PGraphics#textDescent()
|
||||
*/
|
||||
public void textAlign(int alignX, int alignY) {
|
||||
if (recorder != null) recorder.textAlign(alignX, alignY);
|
||||
@@ -13188,6 +13190,10 @@ public class PApplet extends Applet
|
||||
* @see PGraphics#textFont(PFont)
|
||||
* @see PGraphics#textMode(int)
|
||||
* @see PGraphics#textSize(float)
|
||||
* @see PGraphics#textLeading(float)
|
||||
* @see PGraphics#textWidth(String)
|
||||
* @see PGraphics#textAscent()
|
||||
* @see PGraphics#textDescent()
|
||||
* @see PGraphics#rectMode(int)
|
||||
* @see PGraphics#fill(int, float)
|
||||
* @see_external String
|
||||
|
||||
@@ -56,8 +56,8 @@ import java.util.HashMap;
|
||||
* </PRE>
|
||||
* @webref typography
|
||||
* @see PApplet#loadFont(String)
|
||||
* @see PApplet#createFont(String, float, boolean, char[])
|
||||
* @see PGraphics#textFont(PFont)
|
||||
* @see PGraphics#text(char, float, float)
|
||||
*/
|
||||
public class PFont implements PConstants {
|
||||
|
||||
|
||||
@@ -3899,6 +3899,8 @@ public class PGraphics extends PImage implements PConstants {
|
||||
* @see PFont
|
||||
* @see PGraphics#text(String, float, float)
|
||||
* @see PGraphics#textSize(float)
|
||||
* @see PGraphics#textAscent()
|
||||
* @see PGraphics#textDescent()
|
||||
*/
|
||||
public void textAlign(int alignX, int alignY) {
|
||||
textAlign = alignX;
|
||||
@@ -4241,6 +4243,10 @@ public class PGraphics extends PImage implements PConstants {
|
||||
* @see PGraphics#textFont(PFont)
|
||||
* @see PGraphics#textMode(int)
|
||||
* @see PGraphics#textSize(float)
|
||||
* @see PGraphics#textLeading(float)
|
||||
* @see PGraphics#textWidth(String)
|
||||
* @see PGraphics#textAscent()
|
||||
* @see PGraphics#textDescent()
|
||||
* @see PGraphics#rectMode(int)
|
||||
* @see PGraphics#fill(int, float)
|
||||
* @see_external String
|
||||
|
||||
Reference in New Issue
Block a user