public abstract class GraphicsOperations extends Object
| Constructor and Description |
|---|
GraphicsOperations() |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
drawImage(Image image,
double destLeftX,
double destTopY,
double destRightX,
double destBottomY,
int sourceLeftX,
int sourceTopY,
int sourceRightX,
int sourceBottomY) |
void |
drawImage(Image image,
net.avh4.math.geometry.Rect bounds) |
void |
drawImage(Image image,
net.avh4.math.geometry.Rect bounds,
net.avh4.math.geometry.Rect sourceClip) |
abstract void |
drawLine(double startX,
double startY,
double stopX,
double stopY,
int argbColor) |
abstract void |
drawOval(double leftX,
double topY,
double width,
double height,
int argbColor) |
void |
drawOval(net.avh4.math.geometry.Rect bounds,
int argbColor) |
abstract void |
drawRect(double leftX,
double topY,
double width,
double height,
int argbColor) |
void |
drawRect(net.avh4.math.geometry.Rect bounds,
int argbColor) |
void |
drawText(FontMetricsService fm,
String text,
net.avh4.math.geometry.Rect bounds,
Font font,
int color) |
abstract void |
drawText(String text,
double leftX,
double baselineY,
Font font,
int argbColor) |
abstract void |
translate(double deltaX,
double deltaY) |
public void drawRect(net.avh4.math.geometry.Rect bounds,
int argbColor)
public abstract void drawRect(double leftX,
double topY,
double width,
double height,
int argbColor)
public abstract void drawText(String text, double leftX, double baselineY, Font font, int argbColor)
public void drawText(FontMetricsService fm, String text, net.avh4.math.geometry.Rect bounds, Font font, int color)
public abstract void translate(double deltaX,
double deltaY)
public abstract void drawLine(double startX,
double startY,
double stopX,
double stopY,
int argbColor)
public void drawOval(net.avh4.math.geometry.Rect bounds,
int argbColor)
public abstract void drawOval(double leftX,
double topY,
double width,
double height,
int argbColor)
public abstract void drawImage(Image image, double destLeftX, double destTopY, double destRightX, double destBottomY, int sourceLeftX, int sourceTopY, int sourceRightX, int sourceBottomY)
public void drawImage(Image image, net.avh4.math.geometry.Rect bounds, net.avh4.math.geometry.Rect sourceClip)
public void drawImage(Image image, net.avh4.math.geometry.Rect bounds)
Copyright © 2013. All Rights Reserved.