版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

15 строки
459 B

  1. import Path from './Path';
  2. import PathProxy from '../core/PathProxy';
  3. export interface CompoundPathShape {
  4. paths: Path[];
  5. }
  6. export default class CompoundPath extends Path {
  7. type: string;
  8. shape: CompoundPathShape;
  9. private _updatePathDirty;
  10. beforeBrush(): void;
  11. buildPath(ctx: PathProxy | CanvasRenderingContext2D, shape: CompoundPathShape): void;
  12. afterBrush(): void;
  13. getBoundingRect(): import("../core/BoundingRect").default;
  14. }