add_range_profile_settings#
- MonostaticRCSPlotter.add_range_profile_settings(size_range=10.0, range_resolution=0.1, tick_color='#000000', line_color='#ff0000', disc_color='ff0000', cone_color='#00ff00')[source]#
Add a 3D range profile setting representation to the current scene.
This function visualizes a 3D range profile with a main line representing the range axis and tick marks indicating distance intervals. The profile includes visual elements like a disc at the far end and a cone at the starting point. These elements help to display a reference range profile in the 3D scene.
- Parameters:
- size_range
float, default:10.0 Total size of the range in meters. It determines the length of the range profile.
- range_resolution
float, default:0.1 Resolution of the range in meters, representing the distance between each tick mark along the range profile.
- tick_color
str, default:"#000000" Color of the tick marks along the range profile. The
"#000000"default is black.- line_color
str, default:"#ff0000" Color of the line. The
"#ff0000"is red.- disc_color
str, default:"#ff0000" Color of the disc. The
"#ff0000"is red.- cone_color
str, default:"#00ff00" Color of the cone. The d``”#00ff00”`` is green.
- size_range