THREED Procedure

Standard Library procedure that plots a two-dimensional array as a pseudo three-dimensional plot on the currently selected graphics device.

Usage

THREED, array[, space]

Input Parameters

array—The two-dimensional array to plot.

space—The spacing between lines of the plot:

If space is omitted, spacing will be set to (MAX(A)MIN(A))/ROWS.

If space is negative, no hidden lines will be removed.

Keywords

Title—A string containing the main plot title.

XTitle—A string containing the title of the x-axis.

YTitle—A string containing the title of the y-axis.

Discussion

The orientation of the data plotted by THREED is fixed.

Example

OPENR, 1, !Data_dir + 'pikeselev.dat'
data = FLTARR(60, 40)
READF, 1, data
CLOSE, 1
THREED, data
SURFACE, data

See Also

SURFACE, T3D