Class BitmapBounds

java.lang.Object
bdsup2sub.bitmap.BitmapBounds

public class BitmapBounds extends Object
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final int
    X coordinate of last column that contains visible pixels.
    final int
    X coordinate of first column that contains visible pixels.
    final int
    Y coordinate of last line that contains visible pixels.
    final int
    Y coordinate of first line that contains visible pixels.
  • Constructor Summary

    Constructors
    Constructor
    Description
    BitmapBounds(int xMin, int xMax, int yMin, int yMax)
     
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • xMin

      public final int xMin
      X coordinate of first column that contains visible pixels.
    • xMax

      public final int xMax
      X coordinate of last column that contains visible pixels.
    • yMin

      public final int yMin
      Y coordinate of first line that contains visible pixels.
    • yMax

      public final int yMax
      Y coordinate of last line that contains visible pixels.
  • Constructor Details

    • BitmapBounds

      public BitmapBounds(int xMin, int xMax, int yMin, int yMax)
      Parameters:
      xMin - x coordinate of first column that contains visible pixels
      xMax - x coordinate of last column that contains visible pixels
      yMin - y coordinate of first line that contains visible pixels
      yMax - y coordinate of last line that contains visible pixels