image
Class Circle

java.lang.Object
  extended by image.Image
      extended by image.Rectangle
          extended by image.Ellipse
              extended by 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
 
Method Summary
 
Methods inherited from class image.Ellipse
paint
 
Methods inherited from class image.Rectangle
height, width
 
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
 

Constructor Detail

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