| java.lang.Object javax.media.jai.PlanarImage javax.media.jai.OpImage javax.media.jai.GeometricOpImage
All known Subclasses: javax.media.jai.ScaleOpImage, javax.media.jai.WarpOpImage, com.sun.media.jai.opimage.FilteredSubsampleOpImage, com.sun.media.jai.opimage.AffineOpImage, com.sun.media.jai.opimage.SubsampleAverageOpImage, com.sun.media.jai.opimage.SubsampleBinaryToGray4x4OpImage, com.sun.media.jai.opimage.TransposeOpImage, com.sun.media.jai.opimage.SubsampleBinaryToGray2x2OpImage, com.sun.media.jai.opimage.SubsampleBinaryToGrayOpImage, com.sun.media.jai.mlib.MlibAffineOpImage,
GeometricOpImage | abstract public class GeometricOpImage extends OpImage (Code) | | An abstract base class for image operators that perform a geometric
transformation of the source image.
The geometric relationship between the source and destination images
will be determined by the specific behavior of the methods
backwardMapRect() and forwardMapRect() the
implementations of which must be provided by a subclass.
The location of the source pixel corresponding to a given destination
pixel is determined by the aforementioned backward mapping transformation.
The value of the destination pixel is then calculated by interpolating the
values of a set of source pixels at locations in the vicinity of the
backward mapped destination pixel location according to the requirements
of a specified interpolation algorithm. In particular, a given
destination pixel value may be interpolated from the neighborhood of source
pixels beginning at (sx - leftPadding, sy - topPadding) and extending to
(sx + rightPadding, sy + bottomPadding), inclusive, where (sx, sy) is
the truncated backward mapped location of the destination pixel. The
actual amount of padding required is determined by a supplied
Interpolation object.
Since this operator might need a region around each source pixel in
order to compute the destination pixel value, the border destination pixels
might not be able to be computed without any source extension mechanism.
The source extension method can be specified by supplying a
BorderExtender object that will define the pixel values of the
source outside the actual source area as a function of the actual source
pixel values. If no extension is specified, the destination samples that
cannot be computed will be written in the destination as the user-specified
background values.
See Also: BorderExtender See Also: Interpolation See Also: InterpolationNearest See Also: OpImage since: JAI 1.1 |
Field Summary | |
protected double[] | backgroundValues The user-specified background values. | protected Rectangle | computableBounds The computable bounds of this image within which the pixels of the
image may be computed and set. | protected BorderExtender | extender The BorderExtender describing the method by which
source data are extended to provide sufficient context for
calculation of the pixel values of backward mapped coordinates
according to the interpolation method specified. | protected int[] | intBackgroundValues The user-specified background values in integer. | protected Interpolation | interp The Interpolation object describing the subpixel
interpolation method. | protected boolean | setBackground Indicates whether the background values are provided. |
Constructor Summary | |
public | GeometricOpImage(Vector sources, ImageLayout layout, Map configuration, boolean cobbleSources, BorderExtender extender, Interpolation interp) Constructs a GeometricOpImage . | public | GeometricOpImage(Vector sources, ImageLayout layout, Map configuration, boolean cobbleSources, BorderExtender extender, Interpolation interp, double[] backgroundValues) Constructs a GeometricOpImage . |
Method Summary | |
abstract protected Rectangle | backwardMapRect(Rectangle destRect, int sourceIndex) Returns the minimum bounding box of the region of the specified
source to which a particular Rectangle of the
destination will be mapped.
The integral destination rectangle coordinates should be considered
pixel indices. | public Raster | computeTile(int tileX, int tileY) Computes a tile. | abstract protected Rectangle | forwardMapRect(Rectangle sourceRect, int sourceIndex) Returns the minimum bounding box of the region of the destination
to which a particular Rectangle of the specified source
will be mapped.
The integral source rectangle coordinates should be considered
pixel indices. | public BorderExtender | getBorderExtender() Retrieve the BorderExtender object associated with
this class instance. | public Interpolation | getInterpolation() Retrieve the Interpolation object associated with
this class instance. | public Point2D | mapDestPoint(Point2D destPt, int sourceIndex) Computes the position in the specified source that best
matches the supplied destination image position. | public Rectangle | mapDestRect(Rectangle destRect, int sourceIndex) Returns a conservative estimate of the region of a specified
source that is required in order to compute the pixels of a
given destination rectangle. | public Point2D | mapSourcePoint(Point2D sourcePt, int sourceIndex) Computes the position in the destination that best
matches the supplied source image position. | public Rectangle | mapSourceRect(Rectangle sourceRect, int sourceIndex) Returns a conservative estimate of the destination region that
can potentially be affected by the pixels of a rectangle of a
given source. |
backgroundValues | protected double[] backgroundValues(Code) | | The user-specified background values.
|
computableBounds | protected Rectangle computableBounds(Code) | | The computable bounds of this image within which the pixels of the
image may be computed and set. This is equal to the bounding box of
the set of pixels the locations of which backward map to within the
source image bounds contracted by the padding values required for
interpolation.
The GeometricOpImage constructor sets the computable
bounds to the image bounds. Subclasses should set this value to
values reasonable for the operation in question.
|
extender | protected BorderExtender extender(Code) | | The BorderExtender describing the method by which
source data are extended to provide sufficient context for
calculation of the pixel values of backward mapped coordinates
according to the interpolation method specified. If this
variable is null no extension will be performed.
|
intBackgroundValues | protected int[] intBackgroundValues(Code) | | The user-specified background values in integer.
|
interp | protected Interpolation interp(Code) | | The Interpolation object describing the subpixel
interpolation method. This variable should not be null.
|
setBackground | protected boolean setBackground(Code) | | Indicates whether the background values are provided.
|
GeometricOpImage | public GeometricOpImage(Vector sources, ImageLayout layout, Map configuration, boolean cobbleSources, BorderExtender extender, Interpolation interp)(Code) | | Constructs a GeometricOpImage . The image layout
(image bounds, tile grid layout, SampleModel and
ColorModel ) of the output are set in the standard
way by the OpImage constructor.
Additional control over the image bounds, tile grid layout,
SampleModel , and ColorModel may be
obtained by specifying an ImageLayout parameter.
This parameter will be passed to the superclass constructor
unchanged.
Parameters: layout - An ImageLayout containing the sourcebounds before padding, and optionally containing thetile grid layout, SampleModel , andColorModel . Parameters: sources - The immediate sources of this image. Parameters: configuration - Configurable attributes of the image includingconfiguration variables indexed byRenderingHints.Key s and image properties indexedby String s or CaselessStringKey s.This is simply forwarded to the superclass constructor. Parameters: cobbleSources - A boolean indicating whethercomputeRect() expects contiguous sources. Parameters: extender - A BorderExtender , or null . Parameters: interp - an Interpolation object to use forinterpolation of the backward mapped pixel values atfractional positions. If the supplied parameter isnull the corresponding instance variablewill be initialized to an instance ofInterpolationNearest . throws: IllegalArgumentException - if sources is null . throws: IllegalArgumentException - If sources is non-null and any object insources is null . throws: IllegalArgumentException - if combining the intersectedsource bounds with the layout parameter results in negativeoutput width or height. |
GeometricOpImage | public GeometricOpImage(Vector sources, ImageLayout layout, Map configuration, boolean cobbleSources, BorderExtender extender, Interpolation interp, double[] backgroundValues)(Code) | | Constructs a GeometricOpImage . The image layout
(image bounds, tile grid layout, SampleModel and
ColorModel ) of the output are set in the standard
way by the OpImage constructor.
Additional control over the image bounds, tile grid layout,
SampleModel , and ColorModel may be
obtained by specifying an ImageLayout parameter.
This parameter will be passed to the superclass constructor
unchanged.
A RenderingHints for
JAI.KEY_REPLACE_INDEX_COLOR_MODEL with the value of
Boolean.TRUE is automatically added to the given
configuration and passed up to the superclass constructor
so that geometric operations are performed on the pixel values instead
of being performed on the indices into the color map for those
operations whose source(s) have an IndexColorModel .
This addition will take place only if a value for the
JAI.KEY_REPLACE_INDEX_COLOR_MODEL has not already been
provided by the user. Note that the configuration Map
is cloned before the new hint is added to it. Regarding the value
for the JAI.KEY_REPLACE_INDEX_COLOR_MODEL
RenderingHints , the operator itself can be smart
based on the parameters, i.e. while the default value for
the JAI.KEY_REPLACE_INDEX_COLOR_MODEL is
Boolean.TRUE for operations that extend this class,
in some cases the operator could set the default.
Parameters: layout - An ImageLayout containing the sourcebounds before padding, and optionally containing thetile grid layout, SampleModel , andColorModel . Parameters: sources - The immediate sources of this image. Parameters: configuration - Configurable attributes of the image includingconfiguration variables indexed byRenderingHints.Key s and image properties indexedby String s or CaselessStringKey s.This is simply forwarded to the superclass constructor. Parameters: cobbleSources - A boolean indicating whethercomputeRect() expects contiguous sources. Parameters: extender - A BorderExtender , or null . Parameters: interp - an Interpolation object to use forinterpolation of the backward mapped pixel values atfractional positions. If the supplied parameter isnull the corresponding instance variablewill be initialized to an instance ofInterpolationNearest . Parameters: backgroundValues - The user-specified background values. If theprovided array length is smaller than the number of bands, allthe bands will be filled with the first element of the array.If the provided array is null, set it to new double[]{0.0} . throws: IllegalArgumentException - if sources is null . throws: IllegalArgumentException - If sources is non-null and any object insources is null . throws: IllegalArgumentException - if combining the intersectedsource bounds with the layout parameter results in negativeoutput width or height. since: JAI 1.1.2 |
backwardMapRect | abstract protected Rectangle backwardMapRect(Rectangle destRect, int sourceIndex)(Code) | | Returns the minimum bounding box of the region of the specified
source to which a particular Rectangle of the
destination will be mapped.
The integral destination rectangle coordinates should be considered
pixel indices. The "energy" of each pixel is defined to be
concentrated in the continuous plane of pixels at an offset of
(0.5, 0.5) from the index of the pixel. Backward mappings
must take this (0.5, 0.5) pixel center into account. Thus
given integral destination pixel indices as input, the fractional
source location, as calculated by functions Xb(xDst, yDst),
Yb(xDst, yDst), is given by:
xSrc = Xb(xDst+0.5, yDst+0.5) - 0.5
ySrc = Yb(xDst+0.5, yDst+0.5) - 0.5
Parameters: destRect - the Rectangle in destination coordinates. Parameters: sourceIndex - the index of the source image. a Rectangle indicating the source bounding box,or null if the bounding box is unknown. throws: IllegalArgumentException - if sourceIndex isnegative or greater than the index of the last source. throws: IllegalArgumentException - if destRect isnull . |
computeTile | public Raster computeTile(int tileX, int tileY)(Code) | | Computes a tile. A new WritableRaster is created to
represent the requested tile. Its width and height are equal to this
image's tile width and tile height respectively. If the requested
tile lies outside of the image's boundary, or if the backward mapped
and padded tile region does not intersect all sources, the created
raster is returned with all of its pixels set to 0.
Whether or not this method performs source cobbling is determined
by the cobbleSources variable set at construction time.
If cobbleSources is true , cobbling is
performed on the source for areas that intersect multiple tiles,
and computeRect(Raster[], WritableRaster, Rectangle)
is called to perform the actual computation. Otherwise,
computeRect(PlanarImage[], WritableRaster, Rectangle)
is called to perform the actual computation.
Parameters: tileX - The X index of the tile. Parameters: tileY - The Y index of the tile. The tile as a Raster . |
forwardMapRect | abstract protected Rectangle forwardMapRect(Rectangle sourceRect, int sourceIndex)(Code) | | Returns the minimum bounding box of the region of the destination
to which a particular Rectangle of the specified source
will be mapped.
The integral source rectangle coordinates should be considered
pixel indices. The "energy" of each pixel is defined to be
concentrated in the continuous plane of pixels at an offset of
(0.5, 0.5) from the index of the pixel. Forward mappings
must take this (0.5, 0.5) pixel center into account. Thus
given integral source pixel indices as input, the fractional
destination location, as calculated by functions Xf(xSrc, ySrc),
Yf(xSrc, ySrc), is given by:
xDst = Xf(xSrc+0.5, ySrc+0.5) - 0.5
yDst = Yf(xSrc+0.5, ySrc+0.5) - 0.5
Parameters: sourceRect - the Rectangle in source coordinates. Parameters: sourceIndex - the index of the source image. a Rectangle indicating the destinationbounding box, or null if the bounding boxis unknown. throws: IllegalArgumentException - if sourceIndex isnegative or greater than the index of the last source. throws: IllegalArgumentException - if sourceRect isnull . |
getBorderExtender | public BorderExtender getBorderExtender()(Code) | | Retrieve the BorderExtender object associated with
this class instance. The object is returned by reference.
The associated BorderExtender objector null . |
getInterpolation | public Interpolation getInterpolation()(Code) | | Retrieve the Interpolation object associated with
this class instance. The object is returned by reference.
The associated Interpolation object. |
mapDestPoint | public Point2D mapDestPoint(Point2D destPt, int sourceIndex)(Code) | | Computes the position in the specified source that best
matches the supplied destination image position. If it
is not possible to compute the requested position,
null will be returned.
The implementation in this class returns the value of
pt in the following code snippet:
Rectangle destRect = new Rectangle((int)destPt.getX(),
(int)destPt.getY(),
1, 1);
Rectangle sourceRect = backwardMapRect(destRect, sourceIndex);
Point2D pt = (Point2D)destPt.clone();
pt.setLocation(sourceRect.x + (sourceRect.width - 1.0)/2.0,
sourceRect.y + (sourceRect.height - 1.0)/2.0);
Subclasses requiring different behavior should override this
method.
Parameters: destPt - the position in destination image coordinatesto map to source image coordinates. Parameters: sourceIndex - the index of the source image. a Point2D of the same class asdestPt or null . throws: IllegalArgumentException - if destPt isnull . throws: IndexOutOfBoundsException - if sourceIndex isnegative or greater than or equal to the number of sources. since: JAI 1.1.2 |
mapDestRect | public Rectangle mapDestRect(Rectangle destRect, int sourceIndex)(Code) | | Returns a conservative estimate of the region of a specified
source that is required in order to compute the pixels of a
given destination rectangle. The supplied Rectangle
will first be backward mapped into source coordinate space using
backwardMapRect() and then the resulting context
will be modified according to the Interpolation
object characteristics. The resulting Rectangle
is not clipped to the source image bounds.
Parameters: destRect - the Rectangle in destination coordinates. Parameters: sourceIndex - the index of the source image. a Rectangle indicating the required source region.This will equal the bounds of the respective sourceif backwardMapRect() returns null. throws: IllegalArgumentException - if sourceIndex isnegative or greater than the index of the last source. throws: IllegalArgumentException - if destRect isnull . |
mapSourcePoint | public Point2D mapSourcePoint(Point2D sourcePt, int sourceIndex)(Code) | | Computes the position in the destination that best
matches the supplied source image position. If it
is not possible to compute the requested position,
null will be returned.
The implementation in this class returns the value of
pt in the following code snippet:
Rectangle sourceRect = new Rectangle((int)sourcePt.getX(),
(int)sourcePt.getY(),
1, 1);
Rectangle destRect = forwardMapRect(sourceRect, sourceIndex);
Point2D pt = (Point2D)sourcePt.clone();
pt.setLocation(destRect.x + (destRect.width - 1.0)/2.0,
destRect.y + (destRect.height - 1.0)/2.0);
Subclasses requiring different behavior should override this
method.
Parameters: sourcePt - the position in source image coordinatesto map to destination image coordinates. Parameters: sourceIndex - the index of the source image. a Point2D of the same class assourcePt or null . throws: IllegalArgumentException - if sourcePt isnull . throws: IndexOutOfBoundsException - if sourceIndex isnegative or greater than or equal to the number of sources. since: JAI 1.1.2 |
mapSourceRect | public Rectangle mapSourceRect(Rectangle sourceRect, int sourceIndex)(Code) | | Returns a conservative estimate of the destination region that
can potentially be affected by the pixels of a rectangle of a
given source. The supplied Rectangle will first be
contracted according to the Interpolation object
characteristics and then forward mapped into destination coordinate
space using forwardMapRect() . The resulting
Rectangle is not clipped to the destination
image bounds.
Parameters: sourceRect - the Rectangle in source coordinates. Parameters: sourceIndex - the index of the source image. a Rectangle indicating the potentially affecteddestination region. This will equal the destination boundsif forwardMapRect() returns null. throws: IllegalArgumentException - if sourceIndex isnegative or greater than the index of the last source. throws: IllegalArgumentException - if sourceRect isnull . |
Methods inherited from javax.media.jai.OpImage | protected void addTileToCache(int tileX, int tileY, Raster tile)(Code)(Java Doc) public void cancelTiles(TileRequest request, Point[] tileIndices)(Code)(Java Doc) static Vector checkSourceVector(Vector sources, boolean checkElements)(Code)(Java Doc) protected void computeRect(Raster[] sources, WritableRaster dest, Rectangle destRect)(Code)(Java Doc) protected void computeRect(PlanarImage[] sources, WritableRaster dest, Rectangle destRect)(Code)(Java Doc) public Raster computeTile(int tileX, int tileY)(Code)(Java Doc) public boolean computesUniqueTiles()(Code)(Java Doc) final protected WritableRaster createTile(int tileX, int tileY)(Code)(Java Doc) public synchronized void dispose()(Code)(Java Doc) public static int getExpandedNumBands(SampleModel sampleModel, ColorModel colorModel)(Code)(Java Doc) protected synchronized RasterFormatTag[] getFormatTags()(Code)(Java Doc) public int getOperationComputeType()(Code)(Java Doc) public Raster getTile(int tileX, int tileY)(Code)(Java Doc) public TileCache getTileCache()(Code)(Java Doc) public Object getTileCacheMetric()(Code)(Java Doc) public Point[] getTileDependencies(int tileX, int tileY, int sourceIndex)(Code)(Java Doc) protected Raster getTileFromCache(int tileX, int tileY)(Code)(Java Doc) public TileRecycler getTileRecycler()(Code)(Java Doc) public Raster[] getTiles(Point[] tileIndices)(Code)(Java Doc) public boolean hasExtender(int sourceIndex)(Code)(Java Doc) public Point2D mapDestPoint(Point2D destPt, int sourceIndex)(Code)(Java Doc) abstract public Rectangle mapDestRect(Rectangle destRect, int sourceIndex)(Code)(Java Doc) public Point2D mapSourcePoint(Point2D sourcePt, int sourceIndex)(Code)(Java Doc) abstract public Rectangle mapSourceRect(Rectangle sourceRect, int sourceIndex)(Code)(Java Doc) public void prefetchTiles(Point[] tileIndices)(Code)(Java Doc) public TileRequest queueTiles(Point[] tileIndices)(Code)(Java Doc) protected void recycleTile(Raster tile)(Code)(Java Doc) public void setTileCache(TileCache cache)(Code)(Java Doc) protected static Vector vectorize(RenderedImage image)(Code)(Java Doc) protected static Vector vectorize(RenderedImage image1, RenderedImage image2)(Code)(Java Doc) protected static Vector vectorize(RenderedImage image1, RenderedImage image2, RenderedImage image3)(Code)(Java Doc)
|
Methods inherited from javax.media.jai.PlanarImage | public static int XToTileX(int x, int tileGridXOffset, int tileWidth)(Code)(Java Doc) public int XToTileX(int x)(Code)(Java Doc) public static int YToTileY(int y, int tileGridYOffset, int tileHeight)(Code)(Java Doc) public int YToTileY(int y)(Code)(Java Doc) public void addPropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public void addPropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc) public synchronized boolean addSink(Object sink)(Code)(Java Doc) protected void addSink(PlanarImage sink)(Code)(Java Doc) protected void addSource(Object source)(Code)(Java Doc) public synchronized void addTileComputationListener(TileComputationListener listener)(Code)(Java Doc) public void cancelTiles(TileRequest request, Point[] tileIndices)(Code)(Java Doc) public WritableRaster copyData()(Code)(Java Doc) public WritableRaster copyData(WritableRaster raster)(Code)(Java Doc) public void copyExtendedData(WritableRaster dest, BorderExtender extender)(Code)(Java Doc) public static ColorModel createColorModel(SampleModel sm)(Code)(Java Doc) public PlanarImage createSnapshot()(Code)(Java Doc) final protected WritableRaster createWritableRaster(SampleModel sampleModel, Point location)(Code)(Java Doc) public synchronized void dispose()(Code)(Java Doc) protected void finalize() throws Throwable(Code)(Java Doc) public BufferedImage getAsBufferedImage(Rectangle rect, ColorModel cm)(Code)(Java Doc) public BufferedImage getAsBufferedImage()(Code)(Java Doc) public Rectangle getBounds()(Code)(Java Doc) public ColorModel getColorModel()(Code)(Java Doc) public Raster getData()(Code)(Java Doc) public Raster getData(Rectangle region)(Code)(Java Doc) public static ColorModel getDefaultColorModel(int dataType, int numBands)(Code)(Java Doc) public Raster getExtendedData(Rectangle region, BorderExtender extender)(Code)(Java Doc) public Graphics getGraphics()(Code)(Java Doc) public int getHeight()(Code)(Java Doc) public Object getImageID()(Code)(Java Doc) public int getMaxTileX()(Code)(Java Doc) public int getMaxTileY()(Code)(Java Doc) public int getMaxX()(Code)(Java Doc) public int getMaxY()(Code)(Java Doc) public int getMinTileX()(Code)(Java Doc) public int getMinTileY()(Code)(Java Doc) public int getMinX()(Code)(Java Doc) public int getMinY()(Code)(Java Doc) public int getNumBands()(Code)(Java Doc) public int getNumSources()(Code)(Java Doc) public int getNumXTiles()(Code)(Java Doc) public int getNumYTiles()(Code)(Java Doc) protected Hashtable getProperties()(Code)(Java Doc) public Object getProperty(String name)(Code)(Java Doc) public Class getPropertyClass(String name)(Code)(Java Doc) public String[] getPropertyNames()(Code)(Java Doc) public String[] getPropertyNames(String prefix)(Code)(Java Doc) public SampleModel getSampleModel()(Code)(Java Doc) public Vector getSinks()(Code)(Java Doc) public PlanarImage getSource(int index)(Code)(Java Doc) public PlanarImage getSourceImage(int index)(Code)(Java Doc) public Object getSourceObject(int index)(Code)(Java Doc) public Vector getSources()(Code)(Java Doc) public void getSplits(IntegerSequence xSplits, IntegerSequence ySplits, Rectangle rect)(Code)(Java Doc) abstract public Raster getTile(int tileX, int tileY)(Code)(Java Doc) public TileComputationListener[] getTileComputationListeners()(Code)(Java Doc) public TileFactory getTileFactory()(Code)(Java Doc) public int getTileGridXOffset()(Code)(Java Doc) public int getTileGridYOffset()(Code)(Java Doc) public int getTileHeight()(Code)(Java Doc) public Point[] getTileIndices(Rectangle region)(Code)(Java Doc) public Rectangle getTileRect(int tileX, int tileY)(Code)(Java Doc) public int getTileWidth()(Code)(Java Doc) public Raster[] getTiles(Point[] tileIndices)(Code)(Java Doc) public Raster[] getTiles()(Code)(Java Doc) public int getWidth()(Code)(Java Doc) public boolean overlapsMultipleTiles(Rectangle rect)(Code)(Java Doc) public void prefetchTiles(Point[] tileIndices)(Code)(Java Doc) public TileRequest queueTiles(Point[] tileIndices)(Code)(Java Doc) public void removeProperty(String name)(Code)(Java Doc) public void removePropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public void removePropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc) public synchronized boolean removeSink(Object sink)(Code)(Java Doc) protected boolean removeSink(PlanarImage sink)(Code)(Java Doc) public void removeSinks()(Code)(Java Doc) protected boolean removeSource(Object source)(Code)(Java Doc) protected void removeSources()(Code)(Java Doc) public synchronized void removeTileComputationListener(TileComputationListener listener)(Code)(Java Doc) protected void setImageLayout(ImageLayout layout)(Code)(Java Doc) protected void setProperties(Hashtable properties)(Code)(Java Doc) public void setProperty(String name, Object value)(Code)(Java Doc) protected void setSource(Object source, int index)(Code)(Java Doc) protected void setSources(List sourceList)(Code)(Java Doc) public static int tileXToX(int tx, int tileGridXOffset, int tileWidth)(Code)(Java Doc) public int tileXToX(int tx)(Code)(Java Doc) public static int tileYToY(int ty, int tileGridYOffset, int tileHeight)(Code)(Java Doc) public int tileYToY(int ty)(Code)(Java Doc) public String toString()(Code)(Java Doc) public static PlanarImage wrapRenderedImage(RenderedImage image)(Code)(Java Doc)
|
|
|