pencil.js
Version:
Nice modular interactive 2D drawing library.
28 lines (18 loc) • 481 B
Markdown
Rectangle shape.

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