STAMPOVAL
Syntax STAMPOVAL xradius yradius 
(STAMPOVAL xradius yradius "TRUE) 
 
Explanation STAMPOVAL draws an oval around the current turtle(s). It takes two numbers as inputs. The first input is the oval's radius in the horizontal direction; the second input is its radius in the vertical direction. STAMPOVAL draws a circle if the two inputs are equal.

If STAMPOVAL, its inputs, and the value TRUE are all enclosed in parentheses, the oval drawn is filled with the current pattern in the current pen color. If the turtle's pen state is PENDOWN, STAMPOVAL colors the area with the current pen color. If the pen state is PENERASE, STAMPOVAL colors the area with the current background color, thus erasing the form. If the pen state is PENREVERSE, STAMPOVAL colors the area with the complement of the current area color; for example, white turns to black, and green to red. If the turtle's pen state is PENUP, STAMPOVAL has no effect.

See also STAMPRECT.
 

Examples STAMPOVAL 50 50

 

TopIndex