
net.thevpc.echo.Dimension Maven / Gradle / Ivy
package net.thevpc.echo;
public class Dimension {
private double width;
private double height;
public Dimension(double width, double height) {
this.width = width;
this.height = height;
}
public double getWidth() {
return width;
}
public double getHeight() {
return height;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy