Package ptolemy.plot
Class PlotPoint
- java.lang.Object
 - 
- ptolemy.plot.PlotPoint
 
 
- 
- All Implemented Interfaces:
 java.io.Serializable
public class PlotPoint extends java.lang.Object implements java.io.SerializableA simple structure for storing a plot point.- Since:
 - Ptolemy II 0.2
 - Version:
 - $Id$
 - Author:
 - Edward A. Lee
 - See Also:
 - Serialized Form
 - Pt.AcceptedRating:
 - Yellow (cxh)
 - Pt.ProposedRating:
 - Yellow (cxh)
 
 
- 
- 
Field Summary
Fields Modifier and Type Field Description booleanconnectedTrue if this point is connected to the previous point by a line.double[]derivativesd^n y/dx^n for n > 0.booleanerrorBarTrue if the yLowEB and yHighEB fields are valid.doubleoriginalxOriginal value of x before wrapping.doublexX value after wrapping (if any).doubleyY value.doubleyHighEBError bar Y low value.doubleyLowEBError bar Y low value. 
- 
Constructor Summary
Constructors Constructor Description PlotPoint() 
 - 
 
- 
- 
Field Detail
- 
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. 
- 
originalx
public double originalx
Original value of x before wrapping. 
- 
x
public double x
X value after wrapping (if any). 
- 
y
public double y
Y value. 
- 
derivatives
public double[] derivatives
d^n y/dx^n for n > 0. 
- 
yLowEB
public double yLowEB
Error bar Y low value. 
- 
yHighEB
public double yHighEB
Error bar Y low value. 
 - 
 
 -