You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
511 B
20 lines
511 B
4 weeks ago
|
import Path, { PathProps } from '../Path';
|
||
|
export declare class RectShape {
|
||
|
r?: number | number[];
|
||
|
x: number;
|
||
|
y: number;
|
||
|
width: number;
|
||
|
height: number;
|
||
|
}
|
||
|
export interface RectProps extends PathProps {
|
||
|
shape?: Partial<RectShape>;
|
||
|
}
|
||
|
declare class Rect extends Path<RectProps> {
|
||
|
shape: RectShape;
|
||
|
constructor(opts?: RectProps);
|
||
|
getDefaultShape(): RectShape;
|
||
|
buildPath(ctx: CanvasRenderingContext2D, shape: RectShape): void;
|
||
|
isZeroArea(): boolean;
|
||
|
}
|
||
|
export default Rect;
|