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

net.sourceforge.plantuml.klimt.geom.PointDirected Maven / Gradle / Ivy

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

public class PointDirected {

	final private double x;
	final private double y;
	final private double angle;

	public PointDirected(XPoint2D p, double angle) {
		this.x = p.getX();
		this.y = p.getY();
		this.angle = angle;
	}

	public final XPoint2D getPoint2D() {
		return new XPoint2D(x, y);
	}

	public final double getAngle() {
		return angle;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy