/** * @Author: yanxinaliang (rainyxlxl@163.com) * @Date: 2019/4/6 14:54 * @Last Modified by: yanxinaliang (rainyxlxl@163.com) * @Last Modified time: 2019/4/6 14:54 * @disc:RectBrush */ import { SHAPE_TYPE } from '../Config'; import { Point } from './Point'; import { SquareBrush } from './SquareBrush'; declare class RectBrush extends SquareBrush { protected shapeType: SHAPE_TYPE; protected calcRectData(pointer: Point): void; } export { RectBrush };