MCPcopy Create free account
hub / github.com/OpenSourcePhysics/osp / drawOval

Method drawOval

src/org/jibble/epsgraphics/EpsGraphics2D.java:1073–1077  ·  view source on GitHub ↗

Draws an oval.

(int x, int y, int width, int height)

Source from the content-addressed store, hash-verified

1071 * Draws an oval.
1072 */
1073 @Override
1074public void drawOval(int x, int y, int width, int height) {
1075 Shape shape = new Ellipse2D.Float(x, y, width, height);
1076 draw(shape);
1077 }
1078
1079 /**
1080 * Fills an oval.

Callers 5

drawMethod · 0.80
paintIconMethod · 0.80
drawRingsMethod · 0.80
drawMethod · 0.80
drawItMethod · 0.80

Calls 1

drawMethod · 0.95

Tested by

no test coverage detected