If you do not want to draw a circle, you can use the set object circle
command. You use it like this:
set object X circle at axis 0,0 size scr 0.1 fc rgb "navy"
This will lead to the blue circle of the fleet at the origin with a radius of 0.1 of the screen (canvas) size. Please note that when you specify the position / radius for the circle, you must indicate which coordinate system you use: first
corresponds to the first coordinate system xy, scr
(short for screen
) - for screen coordinates. You can learn more by looking in the documentation for drawing circles.
source share