11 lines
202 B
TypeScript
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;
|
|
}
|