objects
Interface plotObject

All Known Implementing Classes:
plotArc, plotInterval, plotPoint

public interface plotObject


Method Summary
 void draw(java.awt.Graphics g)
          Draw the point as a symbol.
 boolean mouseVicinity(fundamentals.mouseVector mouseAt)
          See if mouse position is close to this plot object.
 java.lang.String toPs()
          Represent the plot object as a postscript command
 double weight()
           
 fundamentals.mouseVector visiblePixel(double parameter)
           
 

Method Detail

mouseVicinity

public boolean mouseVicinity(fundamentals.mouseVector mouseAt)
See if mouse position is close to this plot object.

Parameters:
mouseAt - The coordinates of the mouse position
Returns:
true if the mouse is close to the plot object.

draw

public void draw(java.awt.Graphics g)
Draw the point as a symbol.

Parameters:
g - the graphics canvas

toPs

public java.lang.String toPs()
Represent the plot object as a postscript command


visiblePixel

public fundamentals.mouseVector visiblePixel(double parameter)

weight

public double weight()