image
Class Rectangle

java.lang.Object
  extended by image.Image
      extended by image.Rectangle
Direct Known Subclasses:
Ellipse, RoundRectangle, Square

public class Rectangle
extends Image

Represents an Image of a Rectangle.

    new Rectangle(40, 20, "outline", "black")

    new Rectangle(20, 40, "solid", "blue")


Constructor Summary
Rectangle(double width, double height, java.lang.String mode, java.lang.String color)
          Create a Rectangle Image with (double) width and height, mode and color
Rectangle(int width, int height, java.lang.String mode, java.lang.String color)
          Create a Rectangle Image with (int) width and height, mode and color
 
Method Summary
 int height()
          Return the Height of this Image
 void paint(java.awt.Graphics g, int x, int y)
          Paint this Scene into the given graphics
 int width()
          Return the Width of this Image
 
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

Rectangle

public Rectangle(double width,
                 double height,
                 java.lang.String mode,
                 java.lang.String color)
Create a Rectangle Image with (double) width and height, mode and color


Rectangle

public Rectangle(int width,
                 int height,
                 java.lang.String mode,
                 java.lang.String color)
Create a Rectangle Image with (int) width and height, mode and color

Method Detail

paint

public void paint(java.awt.Graphics g,
                  int x,
                  int y)
Paint this Scene into the given graphics

Specified by:
paint in class Image

width

public int width()
Return the Width of this Image

Specified by:
width in class Image

height

public int height()
Return the Height of this Image

Specified by:
height in class Image