RadarCrossSectionVolumeGraphics#

class ansys.stk.core.stkobjects.RadarCrossSectionVolumeGraphics#

Class defining 3D Volume Graphics properties of radar cross section.

Overview#

set_resolution

Set the azimuth/elevation ranges and resolution.

set_number_of_points

Set the azimuth/elevation ranges and number of points.

show

Opt whether to display volume graphics for the radar cross section.

wireframe

Enable the ability to view the volume as a wireframe.

minimum_displayed_rcs

Get or set the minimum displayed radar cross section value.

scale

Get or set the scale value.

azimuth_start

Get the azimuth start value.

azimuth_stop

Get the azimuth stop value.

azimuth_resolution

Get the azimuth resolution.

azimuth_number_of_points

Get the number of azimuth points.

elevation_start

Get the elevation start value.

elevation_stop

Get the elevation stop value.

elevation_resolution

Get the elevation resolution.

elevation_number_of_points

Get the number of elevation points.

color_method

Color method for contours (color ramp or explicit).

start_color

Get or set the color ramp start color.

stop_color

Get or set the color ramp stop color.

levels

Get the collection of volume levels.

relative_to_maximum

Get or set the contours value represents the gain value relative to the maximum.

Import detail#

from ansys.stk.core.stkobjects import RadarCrossSectionVolumeGraphics

Property detail#

property RadarCrossSectionVolumeGraphics.show: bool#

Opt whether to display volume graphics for the radar cross section.

property RadarCrossSectionVolumeGraphics.wireframe: bool#

Enable the ability to view the volume as a wireframe.

property RadarCrossSectionVolumeGraphics.minimum_displayed_rcs: float#

Get or set the minimum displayed radar cross section value.

property RadarCrossSectionVolumeGraphics.scale: float#

Get or set the scale value.

property RadarCrossSectionVolumeGraphics.azimuth_start: float#

Get the azimuth start value.

property RadarCrossSectionVolumeGraphics.azimuth_stop: float#

Get the azimuth stop value.

property RadarCrossSectionVolumeGraphics.azimuth_resolution: float#

Get the azimuth resolution.

property RadarCrossSectionVolumeGraphics.azimuth_number_of_points: int#

Get the number of azimuth points.

property RadarCrossSectionVolumeGraphics.elevation_start: float#

Get the elevation start value.

property RadarCrossSectionVolumeGraphics.elevation_stop: float#

Get the elevation stop value.

property RadarCrossSectionVolumeGraphics.elevation_resolution: float#

Get the elevation resolution.

property RadarCrossSectionVolumeGraphics.elevation_number_of_points: int#

Get the number of elevation points.

property RadarCrossSectionVolumeGraphics.color_method: FigureOfMeritGraphics2DColorMethod#

Color method for contours (color ramp or explicit).

property RadarCrossSectionVolumeGraphics.start_color: Color#

Get or set the color ramp start color.

property RadarCrossSectionVolumeGraphics.stop_color: Color#

Get or set the color ramp stop color.

property RadarCrossSectionVolumeGraphics.levels: RadarCrossSectionVolumeLevelCollection#

Get the collection of volume levels.

property RadarCrossSectionVolumeGraphics.relative_to_maximum: bool#

Get or set the contours value represents the gain value relative to the maximum.

Method detail#

RadarCrossSectionVolumeGraphics.set_resolution(self, azimuth_start: float, azimuth_stop: float, azimuth_resolution: float, elevation_start: float, elevation_stop: float, elevation_resolution: float) None#

Set the azimuth/elevation ranges and resolution.

Parameters:

azimuth_start : float

azimuth_stop : float

azimuth_resolution : float

elevation_start : float

elevation_stop : float

elevation_resolution : float

Returns:

None

RadarCrossSectionVolumeGraphics.set_number_of_points(self, azimuth_start: float, azimuth_stop: float, azimuth_num_points: int, elevation_start: float, elevation_stop: float, elevation_num_points: int) None#

Set the azimuth/elevation ranges and number of points.

Parameters:

azimuth_start : float

azimuth_stop : float

azimuth_num_points : int

elevation_start : float

elevation_stop : float

elevation_num_points : int

Returns:

None