UNPKG

pixi.js

Version:

PixiJS — The HTML5 Creation Engine =============

11 lines (10 loc) 202 B
/** * Common interface for points. Both Point and ObservablePoint implement it * @memberof maths */ export interface PointData { /** X coord */ x: number; /** Y coord */ y: number; }