pencil.js
Version:
Nice modular interactive 2D drawing library.
27 lines (17 loc) • 449 B
Markdown
Ellipse shape (oval).

## Examples
```js
import { Ellipse } from "pencil.js";
const position = [100, 200];
const width = 50;
const height = 20;
const options = {
fill: "red",
};
const ellipse = new Ellipse(position, width, height, options);
```
Inherit from [ComponentOptions](../component/readme.md
Ellipse have no specific options.