image
Class Circle
java.lang.Object
   image.Image
image.Image
       image.Rectangle
image.Rectangle
           image.Ellipse
image.Ellipse
               image.Circle
image.Circle
- public class Circle 
- extends Ellipse
 A Class representing a Circle Image.  When a Circle image is placed in
   a Scene its center point is taken as its location.
   
 
    new Circle(30, "outline", "red")
  
 
 
    new Circle(20, "solid", "blue")
  
 
| Constructor Summary | 
| Circle(double radius,
       java.lang.String mode,
       java.lang.String color)Construct a circle Image of the given (double) radius, mode, and color
 | 
| Circle(int radius,
       java.lang.String mode,
       java.lang.String color)Construct a circle Image of the given (int) radius, mode, and color
 | 
 
 
 
 
| Methods inherited from class image.Image | 
| flipHorizontal, flipVertical, overlay, overlay, overlayxy, overlayxy, overlayxy, overlayxy, overlayxy, overlayxy, rasterize, rotate, rotate, toFile, toScene, toWhiteFile, toWhiteScene | 
 
| Methods inherited from class java.lang.Object | 
| equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
Circle
public Circle(double radius,
              java.lang.String mode,
              java.lang.String color)
- Construct a circle Image of the given (double) radius, mode, and color
 
Circle
public Circle(int radius,
              java.lang.String mode,
              java.lang.String color)
- Construct a circle Image of the given (int) radius, mode, and color