JClass DesktopViews 6.3.0 API
Documentation

com.klg.jclass.chart3d
Interface Chart3dGridDataModel

All Superinterfaces:
Chart3dDataModel, Serializable
All Known Implementing Classes:
Base3dGridDataSource, JCChart3d, JCChart3dJava2d, JCChart3dJava3d

public interface Chart3dGridDataModel
extends Chart3dDataModel

The core grid data model interface for JClass Chart 3D.

In JClass Chart3d, grid data is specified in terms of an x array of grid values, a y array of grid values and doubly subscripted array of z data values.


Method Summary
 double[] getXGrid()
          Retrieves the x grid values array.
 double[] getYGrid()
          Retrieves the y grid values array.
 double[][] getZValues()
          Retrieves the z values -- one for each (x,y) grid point.
 

Method Detail

getXGrid

public double[] getXGrid()
Retrieves the x grid values array.

Returns:
array of double values representing x grid points

getYGrid

public double[] getYGrid()
Retrieves the y grid values array.

Returns:
array of double values representing y grid points

getZValues

public double[][] getZValues()
Retrieves the z values -- one for each (x,y) grid point.

Returns:
doubly subscripted array of double values representing the z values

Copyright © 2004 Quest Software Inc..
All rights reserved.