package org.djutils.draw; /** * Directed2d.java. *

* Copyright (c) 2020-2020 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
* BSD-style license. See DJUTILS License. *

* @author Alexander Verbraeck * @author Peter Knoppers */ public interface Directed2d extends Directed { /** * Return the direction as a rotation around the z-axis in radians. * @return double; the rotation around the z-axis in radians */ double getDirZ(); }