RotatingPlot.SetAxesLocation

Prototypes

void SetAxesLocation( int nLocation )

Parameters

int nLocation
A predefined constant specifying the desired placement of the axes. The valid values are OFF, MIDPOINT, MINIMA, and THREESECTIONS.

Remarks

This method specifies the placement of the axes. The available options are:

OFF
The axes are not displayed.

MIDPOINT
The origin of each axis is placed at the midpoint of the range of the variable for that axis.

MINIMA
The origin of each axis is placed at the minimum value of the variable for that axis.

THREESECTIONS
Each axis is placed on an edge of the bounding cube surrounding the data so that the axis interferes as little as possible with viewing the data.

Example
x = { 0 10 10  0 1 9 9 1 2 8 8 2 3 7 7 3 4 6 6 4 5 };
y = { 0  0 10 10 1 1 9 9 2 2 8 8 3 3 7 7 4 4 6 6 5 };
z = { 0  0  0  0 1 1 1 1 2 2 2 2 3 3 3 3 4 4 4 4 5 };
declare RotatingPlot plot = RotatingPlot.Create( "Pyramid", x, y, z, false );
plot.SetDrawingMode( SMOOTHCOLORMESH );
plot.SetAxesLocation( MIDPOINT );
plot.ShowWindow();