5 lines
186 B
TypeScript
5 lines
186 B
TypeScript
![]() |
import { Path } from "./Path";
|
||
|
let width = 1221;
|
||
|
let height = 2441;
|
||
|
export let DefaultBin = new Path([{ x: 0, y: 0 }, { x: width, y: 0 }, { x: width, y: height }, { x: 0, y: height }]);
|