Added several related references to PFont and text(), per processing/processing-docs#29

This commit is contained in:
Scott Murray
2014-08-04 17:53:43 -07:00
parent f37208667d
commit bd757140fc
3 changed files with 13 additions and 1 deletions
+6
View File
@@ -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
+1 -1
View File
@@ -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 {
+6
View File
@@ -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