ptolemy.plot
Class PlotPoint

java.lang.Object
  |
  +--ptolemy.plot.PlotPoint

public class PlotPoint
extends java.lang.Object

A simple structure for storing a plot point.

Version:
$Id: PlotPoint.java,v 1.22 1999/04/02 23:38:10 cxh Exp $
Author:
Edward A. Lee

Field Summary
 boolean connected
          True if this point is connected to the previous point by a line.
 boolean errorBar
          True if the yLowEB and yHighEB fields are valid.
 double x
           
 double y
           
 double yHighEB
          Error bar Y low value.
 double yLowEB
          Error bar Y low value.
 
Constructor Summary
PlotPoint()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

x

public double x

y

public double y

yLowEB

public double yLowEB
Error bar Y low value.

yHighEB

public double yHighEB
Error bar Y low value.

connected

public boolean connected
True if this point is connected to the previous point by a line.

errorBar

public boolean errorBar
True if the yLowEB and yHighEB fields are valid.
Constructor Detail

PlotPoint

public PlotPoint()