public interface IShapeFactory
| Modifier and Type | Method and Description |
|---|---|
java.awt.Shape |
makeShape(double x,
double y,
double xScale,
double yScale)
Returns a Shape object centered at (x, y) and with the specified
x and y dimensions.
|
java.awt.Shape makeShape(double x,
double y,
double xScale,
double yScale)
x - x-coordinate of the center of the shapey - y-coordinate of the center of the shapexScale - The x-dimension of the shape, usually the x-radius.yScale - The y-dimension of the shape, usually the y-radius.