UNPKG

@turbox3d/graphic-component-pixi

Version:

Graphic component library based on pixi

12 lines (11 loc) 299 B
import { Mesh2D } from '@turbox3d/renderer-pixi'; import * as PIXI from 'pixi.js'; interface IAxis2dProps { type?: 'front' | 'top' | 'left'; } /** 坐标轴 2d 控件 */ export default class Axis2d extends Mesh2D<IAxis2dProps> { protected view: PIXI.Graphics; draw(): void; } export {};