Skip to content

Latest commit

 

History

History

square

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Square

Square shape.

Square example

Examples

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.

Square have no specific options.