RotatingPlot.ShowDepthPerception

Prototypes

void ShowDepthPerception( <boolean bShow> )

Parameters

boolean bShow
If bShow is true, observation markers are drawn in varying sizes to indicate their distance from the viewer. If bShow is false, all observation markers are drawn the same size. Calling this method without a parameter is equivalent to calling it with bShow equal to true.

Remarks

This method controls whether observation markers are drawn in varying sizes to indicate their distance from the viewer.

Example
declare DataObject dobj;
dobj = DataObject.CreateFromFile( "baseball" );
declare RotatingPlot plot;
plot = RotatingPlot.Create( dobj, "NO_HITS", "NO_RUNS", "NO_HOME" );
plot.ShowDepthPerception();
plot.SetAxesLocation( OFF );
pi = constant( "pi" );
do i = 0 to 128;
    plot.Rotate( pi/64, 0, 1, 0 ); 
    run Delay( 40 ); 
end;