pencil.js
Version:
Nice modular interactive 2D drawing library.
27 lines (20 loc) • 549 B
Markdown
Gradient transition of color(s) around a point.

## Examples
```js
import { ConicGradient, Square } from "pencil.js";
const position = [100, 200];
const size = 200;
const centerPosition = [size / 2, size / 2];
const startAngle = 0;
const square = new Square(position, size, {
fill: new ConicGradient(centerPosition, startAngle, {
0: "red",
0.25: "orange",
0.5: "yellow",
0.75: "green",
1: "blue",
}),
});
```