(x, y, width, height, options)
| 1979 | } |
| 1980 | |
| 1981 | function ellipse(x, y, width, height, options) { |
| 1982 | /* Draws an ellipse with the center located at x, y. |
| 1983 | * The current stroke, strokewidth, strokestyle and fill color are applied. |
| 1984 | */ |
| 1985 | var p = new Path(); |
| 1986 | p.ellipse(x, y, width, height); |
| 1987 | p.draw(options); |
| 1988 | } |
| 1989 | |
| 1990 | var oval = ellipse; |
| 1991 |
nothing calls this directly
no test coverage detected
searching dependent graphs…