RadarCrossSectionVolumeGraphics#

class ansys.stk.core.stkobjects.RadarCrossSectionVolumeGraphics#

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

Overview#

set_number_of_points

Set the azimuth/elevation ranges and number of points.

set_resolution

Set the azimuth/elevation ranges and resolution.

azimuth_number_of_points

Get the number of azimuth points.

azimuth_resolution

Get the azimuth resolution.

azimuth_start

Get the azimuth start value.

azimuth_stop

Get the azimuth stop value.

color_method

Color method for contours (color ramp or explicit).

elevation_number_of_points

Get the number of elevation points.

elevation_resolution

Get the elevation resolution.

elevation_start

Get the elevation start value.

elevation_stop

Get the elevation stop value.

levels

Get the collection of volume levels.

minimum_displayed_rcs

Get or set the minimum displayed radar cross section value.

relative_to_maximum

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

scale

Get or set the scale value.

show

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

start_color

Get or set the color ramp start color.

stop_color

Get or set the color ramp stop color.

wireframe

Enable the ability to view the volume as a wireframe.

Import detail#

from ansys.stk.core.stkobjects import RadarCrossSectionVolumeGraphics

Property detail#

property RadarCrossSectionVolumeGraphics.azimuth_number_of_points: int#

Get the number of azimuth points.

property RadarCrossSectionVolumeGraphics.azimuth_resolution: float#

Get the azimuth resolution.

property RadarCrossSectionVolumeGraphics.azimuth_start: float#

Get the azimuth start value.

property RadarCrossSectionVolumeGraphics.azimuth_stop: float#

Get the azimuth stop value.

property RadarCrossSectionVolumeGraphics.color_method: FigureOfMeritGraphics2DColorMethod#

Color method for contours (color ramp or explicit).

property RadarCrossSectionVolumeGraphics.elevation_number_of_points: int#

Get the number of elevation points.

property RadarCrossSectionVolumeGraphics.elevation_resolution: float#

Get the elevation resolution.

property RadarCrossSectionVolumeGraphics.elevation_start: float#

Get the elevation start value.

property RadarCrossSectionVolumeGraphics.elevation_stop: float#

Get the elevation stop value.

property RadarCrossSectionVolumeGraphics.levels: RadarCrossSectionVolumeLevelCollection#

Get the collection of volume levels.

property RadarCrossSectionVolumeGraphics.minimum_displayed_rcs: float#

Get or set the minimum displayed radar cross section value.

property RadarCrossSectionVolumeGraphics.relative_to_maximum: bool#

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

property RadarCrossSectionVolumeGraphics.scale: float#

Get or set the scale value.

property RadarCrossSectionVolumeGraphics.show: bool#

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

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.wireframe: bool#

Enable the ability to view the volume as a wireframe.

Method detail#

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

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