maslab.vis
Class VisPlot
java.lang.Object
maslab.vis.VisObject
maslab.vis.VisPlot
-
public class VisPlot
- extends VisObject
A cloud of points.
Field Summary |
double |
size
|
Method Summary |
void |
paint(VisCanvas vc,
java.awt.Graphics2D g,
java.awt.image.BufferedImage bi)
Overriden by each subclass to draw itself onto the provided
graphics context. |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
size
public double size
VisPlot
public VisPlot(java.awt.Color c,
VisPlot.LINESTYLE style,
java.util.List<GPoint2D> points)
VisPlot
public VisPlot(java.awt.Color c,
VisPlot.LINESTYLE style)
paint
public void paint(VisCanvas vc,
java.awt.Graphics2D g,
java.awt.image.BufferedImage bi)
- Description copied from class:
VisObject
- Overriden by each subclass to draw itself onto the provided
graphics context. Applications can choose to use either the Graphics2D
(which has the correct transform already set up) or to draw to the
buffered image directly.
-
- Specified by:
-
paint
in class VisObject
-