org.djutils.draw.Directed2d Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of djutils-draw Show documentation
Show all versions of djutils-draw Show documentation
DJUTILS - Delft Java Utilities Drawing and animation primitives
The newest version!
package org.djutils.draw;
/**
* Directed2d.java.
*
* Copyright (c) 2023-2024 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See
* for project information https://djutils.org. The DJUTILS project is
* distributed under a three-clause BSD-style license, which can be found at
* https://djutils.org/docs/license.html.
*
* @author Alexander Verbraeck
* @author Peter Knoppers
* @param the Directed type
*/
public interface Directed2d> extends Directed
{
/**
* Retrieve the angle from the positive x-axis. Positive rotates towards the positive y-axis (and beyond).
* @return double; dirZ
*/
double getDirZ();
}