cut-demo/src/Nest/Core/DefaultBin.ts

5 lines
186 B
TypeScript
Raw Normal View History

2020-04-27 16:39:48 +08:00
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 }]);