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

net.sourceforge.plantuml.klimt.geom.PointAndAngle 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.klimt.geom;

public class PointAndAngle {

	private final XPoint2D pt;
	private final double angle;

	public PointAndAngle(XPoint2D pt, double angle) {
		this.pt = pt;
		this.angle = angle;
	}

	public XPoint2D getPt() {
		return pt;
	}

	public double getAngle() {
		return angle;
	}

	public double getX() {
		return pt.getX();
	}

	public double getY() {
		return pt.getY();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy