UNPKG

pencil.js

Version:

Nice modular interactive 2D drawing library.

27 lines (17 loc) 424 B
# Square Square shape. ![Square example](../../../media/examples/square.png) ## Examples ```js import { Square } from "pencil.js"; const position = [100, 200]; const size = 200; const options = { fill: "red", stroke: "#000" }; const square = new Square(position, size, options); ``` ## SquareOptions Inherit from [RectangleOptions](../rectangle/readme.md#rectangleoptions). Square have no specific options.