All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface JSci.awt.Graph3DModel

public interface Graph3DModel
This is a generic interface for sending data to 3D graphs.


Method Index

 o addGraphDataListener(GraphDataListener)
Add a listener.
 o firstSeries()
Selects the first data series.
 o getXCoord(int)
Returns the x coordinate for the ith point.
 o getYCoord(int)
Returns the y coordinate for the ith point.
 o getZCoord(int)
Returns the z coordinate for the ith point.
 o nextSeries()
Selects the next data series.
 o removeGraphDataListener(GraphDataListener)
Remove a listener.
 o seriesLength()
Returns the length of the current series.

Methods

 o addGraphDataListener
 public abstract void addGraphDataListener(GraphDataListener l)
Add a listener.

 o removeGraphDataListener
 public abstract void removeGraphDataListener(GraphDataListener l)
Remove a listener.

 o getXCoord
 public abstract float getXCoord(int i)
Returns the x coordinate for the ith point.

 o getYCoord
 public abstract float getYCoord(int i)
Returns the y coordinate for the ith point.

 o getZCoord
 public abstract float getZCoord(int i)
Returns the z coordinate for the ith point.

 o seriesLength
 public abstract int seriesLength()
Returns the length of the current series.

 o firstSeries
 public abstract void firstSeries()
Selects the first data series.

 o nextSeries
 public abstract boolean nextSeries()
Selects the next data series. Returns false if there is no next series.


All Packages  Class Hierarchy  This Package  Previous  Next  Index