Inheritance diagram for org.math.plot.plotObjects.Label:
Definition at line 12 of file Label.java.
Public Member Functions | |
Label (String l, Color col, double...c) | |
Label (String l, double...c) | |
Label (double...c) | |
void | setText (String _t) |
String | getText () |
void | setCoord (double..._c) |
void | setColor (Color c) |
Color | getColor () |
void | setCorner (double north_south, double east_west) |
void | setVisible (boolean v) |
boolean | getVisible () |
void | plot (AbstractDrawer draw) |
void | rotate (double _angle) |
void | setFont (Font _font) |
Font | getFont () |
Static Public Member Functions | |
static double | approx (double val, int decimal) |
static String | coordToString (double...c) |
Public Attributes | |
double | angle = 0 |
Font | font = AbstractDrawer.DEFAULT_FONT |
Protected Attributes | |
double[] | coord |
double[] | base_offset |
String | label |
Color | color |
double | cornerN = 0.5 |
double | cornerE = 0.5 |
Package Attributes | |
boolean | visible = true |
org.math.plot.plotObjects.Label.Label | ( | double... | c | ) |
show coord itself
Definition at line 47 of file Label.java.
References org.math.plot.plotObjects.Label.coordToString().
00047 { 00048 this(coordToString(c), AbstractDrawer.DEFAULT_COLOR, c); 00049 }
void org.math.plot.plotObjects.Label.setCorner | ( | double | north_south, | |
double | east_west | |||
) |
reference point center: 0.5, 0.5 lowerleft: 0,0 upperleft 1, 0 ...
Definition at line 74 of file Label.java.
References org.math.plot.plotObjects.Label.cornerE, and org.math.plot.plotObjects.Label.cornerN.
void org.math.plot.plotObjects.Label.plot | ( | AbstractDrawer | draw | ) |
see Text for formatted text output
Implements org.math.plot.plotObjects.Plotable.
Reimplemented in org.math.plot.plotObjects.BaseLabel.
Definition at line 99 of file Label.java.
References org.math.plot.plotObjects.Label.angle, org.math.plot.plotObjects.Label.base_offset, org.math.plot.plotObjects.Label.color, org.math.plot.plotObjects.Label.coord, org.math.plot.plotObjects.Label.cornerE, org.math.plot.plotObjects.Label.cornerN, org.math.plot.render.AbstractDrawer.drawText(), org.math.plot.plotObjects.Label.font, org.math.plot.plotObjects.Label.label, org.math.plot.render.AbstractDrawer.setBaseOffset(), org.math.plot.render.AbstractDrawer.setColor(), org.math.plot.render.AbstractDrawer.setFont(), org.math.plot.render.AbstractDrawer.setTextAngle(), org.math.plot.render.AbstractDrawer.setTextOffset(), and org.math.plot.plotObjects.Label.visible.
00099 { 00100 if (!visible) return; 00101 00102 draw.setColor(color); 00103 draw.setFont(font); 00104 draw.setBaseOffset(base_offset); 00105 draw.setTextOffset(cornerE, cornerN); 00106 draw.setTextAngle(angle); 00107 draw.drawText(label, coord); 00108 draw.setBaseOffset(null); 00109 }