package org.djutils.draw; /** * Space2d interface to show that the number of dimensions for the drawable objects is 2. *

* Copyright (c) 2020-2021 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 class Space2d implements Space { /** */ private static final long serialVersionUID = 20201208L; /** {@inheritDoc} */ @Override public int getDimensions() { return 2; } }