All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cdc.gv.atts.GvPoint2 Maven / Gradle / Ivy

There is a newer version: 0.100.2
Show newest version
package cdc.gv.atts;

import cdc.gv.support.GvEncodable;

public class GvPoint2 implements GvEncodable {
    double x;
    double y;

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

    @Override
    public String encode() {
        return x + "," + y;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy