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

com.onespatial.dwglib.bitstreams.Point2D Maven / Gradle / Ivy

Go to download

dwg-lib is a Java library for reading AutoCad files version 2010 and later

The newest version!
package com.onespatial.dwglib.bitstreams;

public class Point2D {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy