pencil.js
Version:
Nice modular interactive 2D drawing library.
26 lines (17 loc) • 416 B
Markdown
Heart shape.

```js
import { Heart } from "pencil.js";
const position = [100, 200];
const radius = 2;
const options = {
fill: "red",
stroke: "teal"
};
const heart = new Heart(position, radius, options);
```
Inherit from [ComponentOptions](../component/readme.md
Heart have no specific options.