@turbox3d/graphic-component-pixi
Version:
Graphic component library based on pixi
15 lines (14 loc) • 470 B
TypeScript
import { drawCircle } from './drawCircle';
import { drawLine, drawLines } from './drawLine';
import { drawPath } from './drawPath';
import { drawPolygon } from './drawPolygon';
import { drawRect } from './drawRect';
declare const DrawUtils: {
drawCircle: typeof drawCircle;
drawLine: typeof drawLine;
drawLines: typeof drawLines;
drawPath: typeof drawPath;
drawPolygon: typeof drawPolygon;
drawRect: typeof drawRect;
};
export default DrawUtils;