import * as PIXI from 'pixi.js'; /** * 安信形状 */ export class AxImageShape extends PIXI.Container { image: PIXI.Sprite; constructor() { super(); } paintVertexShape(rect: PIXI.Rectangle) { } paintBackground(rect: PIXI.Rectangle) { } paintForeground(rect: PIXI.Rectangle) { } paintEdgeShape(pts: Array) { } }