Space2d.java

package org.djutils.draw;

/**
 * Space2d interface to show that the number of dimensions for the drawable objects is 2.
 * <p>
 * Copyright (c) 2020-2021 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
 * BSD-style license. See <a href="https://djutils.org/docs/current/djutils/licenses.html">DJUTILS License</a>.
 * </p>
 * @author <a href="https://www.tudelft.nl/averbraeck">Alexander Verbraeck</a>
 * @author <a href="https://www.tudelft.nl/pknoppers">Peter Knoppers</a>
 */
public class Space2d implements Space
{

    /** */
    private static final long serialVersionUID = 20201208L;

    /** {@inheritDoc} */
    @Override
    public int getDimensions()
    {
        return 2;
    }

}