Package jahuwaldt.j3d
Interface BGFGImage
-
public interface BGFGImage
The interface in common to any objects that provide a background or foreground (overlay) image to render behind or on top of aBGFGCanvas3D.Modified by: Joseph A.Huwaldt
- Version:
- September 16, 2016
- Author:
- Joseph A. Huwaldt, Date: April 9, 2009
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.awt.image.BufferedImagegetImage()Returns a BufferedImage containing the background or overlay to be displayed in aBGFGCanvas3Dcanvas either behind or over top of the 3D scene or returnsnullfor no image.intgetImageX()Returns the X coordinate location on the canvas where the upper-left corner of the buffered image should be drawn.intgetImageY()Returns the Y coordinate location on the canvas where the upper-left corner of the buffered image should be drawn.
-
-
-
Method Detail
-
getImage
java.awt.image.BufferedImage getImage()
Returns a BufferedImage containing the background or overlay to be displayed in aBGFGCanvas3Dcanvas either behind or over top of the 3D scene or returnsnullfor no image.- Returns:
- The background or overlay image.
-
getImageX
int getImageX()
Returns the X coordinate location on the canvas where the upper-left corner of the buffered image should be drawn.- Returns:
- X-coordinate of the upper-left corner of the image on the canvas.
-
getImageY
int getImageY()
Returns the Y coordinate location on the canvas where the upper-left corner of the buffered image should be drawn.- Returns:
- Y-coordinate of the upper-left corner of the image on the canvas.
-
-