Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 549 Bytes

readme.md

File metadata and controls

26 lines (20 loc) · 549 Bytes

Conic-gradient

Gradient transition of color(s) around a point.

Conic-gradient example

Examples

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",
    }),
});