jsketcher/modules/math/xyz.ts
2020-07-19 22:18:57 -07:00

7 lines
No EOL
65 B
TypeScript

export interface XYZ {
x: number;
y: number;
z: number;
}