Inheritance diagram for org.math.plot.plotObjects.BaseLabel:
Definition at line 15 of file BaseLabel.java.
Public Member Functions | |
BaseLabel (String l, Color c, double...rC) | |
void | plot (AbstractDrawer draw) |
Static Public Member Functions | |
static void | main (String[] args) |
void org.math.plot.plotObjects.BaseLabel.plot | ( | AbstractDrawer | draw | ) |
see Text for formatted text output
Reimplemented from org.math.plot.plotObjects.Label.
Definition at line 33 of file BaseLabel.java.
References org.math.plot.plotObjects.Label.angle, 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.drawTextBase(), org.math.plot.plotObjects.Label.font, org.math.plot.plotObjects.Label.label, org.math.plot.render.AbstractDrawer.setColor(), org.math.plot.render.AbstractDrawer.setFont(), org.math.plot.render.AbstractDrawer.setTextAngle(), and org.math.plot.render.AbstractDrawer.setTextOffset().
Referenced by org.math.plot.plotObjects.Axis.editnote(), and org.math.plot.plotObjects.Axis.plot().
00033 { 00034 draw.setColor(color); 00035 draw.setFont(font); 00036 draw.setTextAngle(angle); 00037 draw.setTextOffset(cornerE, cornerN); 00038 draw.drawTextBase(label, coord); 00039 }