RotatingPlot.ShowRays

Prototypes

void ShowRays( <boolean bShow> )

Parameters

boolean bShow
If bShow is true, lines are drawn from the center of the bounding cube to each observation marker. If bShow is false, these lines are not drawn. Calling this method without a parameter is equivalent to calling it with bShow equal to true.

Remarks

This method controls whether lines are drawn from the center of the bounding cube to each observation marker.

Example
declare DataObject dobj;
dobj = DataObject.CreateFromFile( "baseball" );
declare RotatingPlot plot;
plot = RotatingPlot.Create( dobj, "NO_HITS", "NO_RUNS", "NO_HOME" );
plot.ShowRays();