Files
nothoughts/node_modules/pixi.js/lib/maths/point/PointData.d.ts
2025-08-04 18:57:35 +02:00

11 lines
202 B
TypeScript

/**
* Common interface for points. Both Point and ObservablePoint implement it
* @memberof maths
*/
export interface PointData {
/** X coord */
x: number;
/** Y coord */
y: number;
}