|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object image.Image image.Overlay
public class Overlay
Represents the Overlaying of two or more images.
new Overlay(new Rectangle(30, 60, "solid", "orange"), new Ellipse(60, 30, "solid", "purple"))
new Overlay(new Ellipse(10, 10, "solid", "red"), new Ellipse(20, 20, "solid", "black"), new Ellipse(30, 30, "solid", "red"), new Ellipse(40, 40, "solid", "black"), new Ellipse(50, 50, "solid", "red"), new Ellipse(60, 60, "solid", "black"))
new Overlay(new RegularPolygon(20, 5, "solid", "#3232FF"), new RegularPolygon(26, 5, "solid", "#6464FF"), new RegularPolygon(32, 5, "solid", "#9696FF"), new RegularPolygon(38, 5, "solid", "#C8C8FF"), new RegularPolygon(44, 5, "solid", "#FAFAFF"))
Image
s.
new Ellipse(60, 30, "solid", "purple") .overlay(new Rectangle(30, 60, "solid", "orange"))
new Ellipse(60, 60, "solid", "black") .overlay(new Ellipse(10, 10, "solid", "red"), new Ellipse(20, 20, "solid", "black"), new Ellipse(30, 30, "solid", "red"), new Ellipse(40, 40, "solid", "black"), new Ellipse(50, 50, "solid", "red"))
new RegularPolygon(44, 5, "solid", "#FAFAFF") .overlay(new RegularPolygon(20, 5, "solid", "#3232FF"), new RegularPolygon(26, 5, "solid", "#6464FF"), new RegularPolygon(32, 5, "solid", "#9696FF"), new RegularPolygon(38, 5, "solid", "#C8C8FF"))
Constructor Summary | |
---|---|
Overlay(Image top,
Image next,
Image... imgs)
Construct an Overlay from the two or more Images |
Method Summary | |
---|---|
int |
height()
Return the height of this Image |
void |
paint(java.awt.Graphics g,
int xx,
int yy)
Draw this Overlay image into a 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 |
---|
public Overlay(Image top, Image next, Image... imgs)
Method Detail |
---|
public void paint(java.awt.Graphics g, int xx, int yy)
paint
in class Image
public int width()
width
in class Image
public int height()
height
in class Image
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |