Newer
Older
dxcgt / app / src / main / java / com / smartdot / cgt / util / PointD.java
wangxitong on 6 Apr 2021 168 bytes first commit
package com.smartdot.cgt.util;

public class PointD {

    public double x, y;

    public PointD(double x, double y) {
        this.x = x;
        this.y = y;
    }
}