Previous ION Java User's Guide: ION Java Class and Method Reference Next

IONSurface() / IONJSurface()

The IONSurface() method constructs an object of the IONSurface class.

Syntax


Note
The following is the syntax for the IONSurface() method. For the IONJSurface() method, replace IONSurface with IONJSurface.

public IONSurface(int iWidth, int iHeight)

public IONSurface(int iWidth, int iHeight, int Z[][])

public IONSurface(int iWidth, int iHeight, float Z[][])

public IONSurface(int iWidth, int iHeight, double Z[][])

public IONSurface(int iWidth, int iHeight, String sName)

public IONSurface(int iWidth, int iHeight, int Z[][], int X[], int Y[])

public IONSurface(int iWidth, int iHeight, float Z[][], float X[], float Y[])

public IONSurface(int iWidth, int iHeight, double Z[][], double X[], double Y[])

public IONSurface(int iWidth, int iHeight, String sZName, String sXName, String    sYName)

Arguments

iWidth

The width of the plot.

iHeight

The height of the plot.

Z

The Z (data) values for the surface.

sName, sZName

The name of the IDL variable to use for the Z (data) values of the surface.

X

An array holding the values for the X coordinates of the grid.

Y

An array holding the values for the Y coordinates of the grid.

sXName

The name of the IDL variable holding the values for the X coordinates of the grid.

sYName

The name of the IDL variable holding the values for the Y coordinates of the grid.

Exceptions

None.

  IDL Online Help (March 06, 2007)