UNPKG

rpi-led-matrix-painter

Version:

Add drawing facilities to rpi-led-matrix. Manage sections of the board independently, draw shapes, text, and images.

13 lines (11 loc) 274 B
import { PaintingInstruction } from "./paintinginstruction"; export interface CanvasSectionSettings { name: string; x: number; y: number; z: number; width: number; height: number; representation: PaintingInstruction[]; overflow?: boolean; }