export default class PointItem{
    x: number
    y: number
    idx: number
    constructor(x, y, idx) {
        this.x = x;
        this.y = y;
        this.idx = idx
    }
}
