UNPKG

pencil.js

Version:

Nice modular interactive 2D drawing library.

27 lines (20 loc) 549 B
# Conic-gradient Gradient transition of color(s) around a point. ![Conic-gradient example](../../../media/examples/conic-gradient.png) ## 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", }), }); ```