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.
14 lines
459 B
14 lines
459 B
import Path from './Path'; |
|
import PathProxy from '../core/PathProxy'; |
|
export interface CompoundPathShape { |
|
paths: Path[]; |
|
} |
|
export default class CompoundPath extends Path { |
|
type: string; |
|
shape: CompoundPathShape; |
|
private _updatePathDirty; |
|
beforeBrush(): void; |
|
buildPath(ctx: PathProxy | CanvasRenderingContext2D, shape: CompoundPathShape): void; |
|
afterBrush(): void; |
|
getBoundingRect(): import("../core/BoundingRect").default; |
|
}
|
|
|