maslab.vis
Class VisPointList

java.lang.Object
  extended by maslab.vis.VisObject
      extended by maslab.vis.VisPointList

public class VisPointList
extends VisObject

A cloud of points.


Field Summary
 java.awt.Color color
           
 java.util.List<GPoint2D> points
           
 double size
           
 
Fields inherited from class maslab.vis.VisObject
coordinateSpace, SCREENSPACE, WORLDSPACE
 
Constructor Summary
VisPointList(java.awt.Color c, double size)
           
VisPointList(java.awt.Color c, java.util.List<GPoint2D> points)
           
 
Method Summary
 void add(double x, double y)
           
 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
 

Field Detail

size

public double size

color

public java.awt.Color color

points

public java.util.List<GPoint2D> points
Constructor Detail

VisPointList

public VisPointList(java.awt.Color c,
                    java.util.List<GPoint2D> points)

VisPointList

public VisPointList(java.awt.Color c,
                    double size)
Method Detail

add

public void add(double x,
                double y)

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