Uses of Class
org.minueto.image.MinuetoImage

Packages that use MinuetoImage
org.minueto.image The org.minueto.image package contains all the classes related to image creation, loading and manipulation. 
org.minueto.window The org.minueto.window package contains all the classes related to creating a drawing surface for the Minueto application, weither it be a window or a panel. 
 

Uses of MinuetoImage in org.minueto.image
 

Subclasses of MinuetoImage in org.minueto.image
 class MinuetoCircle
          The MinuetoCircle class allows you to build the image of a circle or an ellipse.
 class MinuetoImageFile
          The MinuetoImageFile class allows you to load an image from a file.
 class MinuetoRectangle
          The MinuetoRectangle class allows you to build the image of a rectangle or a square.
 class MinuetoText
          The MinuetoText class allows you to build an image of a string of text.
 

Methods in org.minueto.image that return MinuetoImage
 MinuetoImage MinuetoImage.crop(int cornerX, int cornerY, int sizeX, int sizeY)
          Return a cropped copy of this MinuetoImage.
 MinuetoImage MinuetoImage.flip(boolean horizontal, boolean vertical)
          Returns a flipped copy of this MinuetoImage.
 MinuetoImage MinuetoImage.mask(MinuetoColor color)
          The mask method creates a new MinuetoImage where all the non-transparent pxels of this image are replaced with the provided color.
 MinuetoImage MinuetoImage.rotate(double dAngle)
          Return a rotated copy of this MinuetoImage.
 MinuetoImage MinuetoImage.scale(double factorX, double factorY)
          Return a scaled copy of this MinuetoImage.
 

Methods in org.minueto.image with parameters of type MinuetoImage
 void MinuetoDrawingSurface.draw(MinuetoImage image, int x, int y)
          Draw another MinuetoImage on this MinuetoDrawingSurface (thus compositing them).
 void MinuetoImage.draw(MinuetoImage image, int x, int y)
           
 

Uses of MinuetoImage in org.minueto.window
 

Methods in org.minueto.window with parameters of type MinuetoImage
 void MinuetoPanel.draw(MinuetoImage image, int x, int y)