1 package org.opentrafficsim.core; 2 3 import org.djunits.value.vdouble.scalar.DOUBLE_SCALAR; 4 5 /** 6 * <p> 7 * Copyright (c) 2013-2014 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br> 8 * BSD-style license. See <a href="http://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>. 9 * <p> 10 * $LastChangedDate: 2015-07-24 02:58:59 +0200 (Fri, 24 Jul 2015) $, @version $Revision: 1147 $, by $Author: averbraeck $, 11 * initial version Aug 30, 2015 <br> 12 * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a> 13 * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a> 14 */ 15 public interface OTS_SCALAR extends DOUBLE_SCALAR 16 { 17 // Change this into FLOAT_SCALAR and the entire OTS will work with floats instead of doubles for scalars. 18 }