RotatingPlot.FillContours

Prototypes

void FillContours( <boolean bFill> )

Parameters

boolean bFill
If bFill is true, the region between projected contour lines is filled with color. If bFill is false, the region between projected contour lines is not filled. Calling this method without a parameter is equivalent to calling it with bFill equal to true.

Remarks

This method controls whether the region between projected contour lines is filled with color.

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.Rotate( 3.14159/9, 1, 0, 1 );
plot.Rotate( 3*3.14159/4, 0, 1, 0 );
plot.FillContours();
plot.ShowWindow();