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

net.sourceforge.plantuml.code.PairInt Maven / Gradle / Ivy

There is a newer version: 1.2024.8
Show newest version
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.code;

public class PairInt {
	// ::remove file when __CORE__

	private final int x;
	private final int y;

	public PairInt(int x, int y) {
		this.x = x;
		this.y = y;
	}

	public PairInt rotate() {
		return new PairInt(-y, x);
	}

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

	public int getX() {
		return x;
	}

	public int getY() {
		return y;
	}

	public PairInt plus(PairInt other) {
		return new PairInt(x + other.x, y + other.y);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy