LayerGetPolarConfigΒΆ

LayerGetPolarConfig returns the polar diagram configuration.

rvConfig = LayerGetPolarConfig(hLayer)

Return Value

rvConfig is a real vector with 6 elements. See LayerSetPolarConfig for a description of the elements.

Parameters

hLayer

Identifies the layer.

Example

To set only one element:

rvConfig = LayerGetPolarConfig(hLayer);
rvConfig[6] = -90.0;    // sets the angle offset
LayerSetPolarConfig(hLayer, rvConfig);
rvConfig = LayerGetPolarConfig(hLayer);
// draw angle clockwise
rvConfig[1] = rvConfig[1] | POLAR_CLOCKWISE | POLAR_ANGLE_LABEL_GRADIENT;
LayerSetPolarConfig(hLayer, rvConfig);

History

Version Description
5.0.0 New

id-520188