org.math.plot.plotObjects.Label Class Reference

Inheritance diagram for org.math.plot.plotObjects.Label:

org.math.plot.plotObjects.Plotable org.math.plot.plotObjects.BaseLabel List of all members.

Detailed Description

BSD License

Author:
Yann RICHET

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


Constructor & Destructor Documentation

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         }


Member Function Documentation

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.

00074                                                                     {
00075                 cornerN = north_south;
00076                 cornerE = east_west;
00077         }

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         }


The documentation for this class was generated from the following file:
Generated on Wed Sep 5 21:44:02 2007 for jmathplot by  doxygen 1.5.1