1 package org.opentrafficsim.road.gtu.lane.object; 2 3 import org.djunits.value.vdouble.scalar.Length; 4 import org.opentrafficsim.core.geometry.OTSLine3D; 5 6 /** 7 * <p> 8 * Copyright (c) 2013-2015 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br> 9 * BSD-style license. See <a href="http://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>. 10 * </p> 11 * $LastChangedDate: 2015-07-24 02:58:59 +0200 (Fri, 24 Jul 2015) $, @version $Revision: 1147 $, by $Author: averbraeck $, 12 * initial version Nov 30, 2015 <br> 13 * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a> 14 * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a> 15 */ 16 public class AbstractTrafficLightNew extends AbstractCSEObject 17 { 18 /** 19 * @param geometry the geometry of the traffic light 20 * @param height the height of the "barrier" 21 */ 22 public AbstractTrafficLightNew(final OTSLine3D geometry, final Length.Rel height) 23 { 24 super(geometry, height); 25 } 26 27 }