9 lines
320 B
TypeScript
9 lines
320 B
TypeScript
|
// Copyright: Ankitects Pty Ltd and contributors
|
||
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||
|
|
||
|
import { drawEllipse } from "./tool-ellipse";
|
||
|
import { drawPolygon } from "./tool-polygon";
|
||
|
import { drawRectangle } from "./tool-rect";
|
||
|
|
||
|
export { drawEllipse, drawPolygon, drawRectangle };
|