public final class LaneFactory extends Object
Copyright (c) 2013-2015 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.
$LastChangedDate: 2015-09-16 19:20:07 +0200 (Wed, 16 Sep 2015) $, @version $Revision: 1405 $, by $Author: averbraeck $,
initial version 30 okt. 2014
Modifier and Type | Method and Description |
---|---|
static Lane |
makeLane(String name,
org.opentrafficsim.core.network.OTSNode from,
org.opentrafficsim.core.network.OTSNode to,
org.opentrafficsim.core.geometry.OTSPoint3D[] intermediatePoints,
LaneType laneType,
org.djunits.value.vdouble.scalar.Speed speedLimit,
org.opentrafficsim.core.dsol.OTSDEVSSimulatorInterface simulator)
Create a simple Lane.
|
static CrossSectionLink |
makeLink(String name,
org.opentrafficsim.core.network.OTSNode from,
org.opentrafficsim.core.network.OTSNode to,
org.opentrafficsim.core.geometry.OTSPoint3D[] intermediatePoints)
Create a Link along intermediate coordinates from one Node to another.
|
static Lane[] |
makeMultiLane(String name,
org.opentrafficsim.core.network.OTSNode from,
org.opentrafficsim.core.network.OTSNode to,
org.opentrafficsim.core.geometry.OTSPoint3D[] intermediatePoints,
int laneCount,
int laneOffsetAtStart,
int laneOffsetAtEnd,
LaneType laneType,
org.djunits.value.vdouble.scalar.Speed speedLimit,
org.opentrafficsim.core.dsol.OTSDEVSSimulatorInterface simulator)
Create a simple road with the specified number of Lanes.
This method returns an array of Lane. |
static Lane[] |
makeMultiLane(String name,
org.opentrafficsim.core.network.OTSNode from,
org.opentrafficsim.core.network.OTSNode to,
org.opentrafficsim.core.geometry.OTSPoint3D[] intermediatePoints,
int laneCount,
LaneType laneType,
org.djunits.value.vdouble.scalar.Speed speedLimit,
org.opentrafficsim.core.dsol.OTSDEVSSimulatorInterface simulator)
Create a simple road with the specified number of Lanes.
This method returns an array of Lane. |
public static CrossSectionLink makeLink(String name, org.opentrafficsim.core.network.OTSNode from, org.opentrafficsim.core.network.OTSNode to, org.opentrafficsim.core.geometry.OTSPoint3D[] intermediatePoints) throws org.opentrafficsim.core.network.NetworkException
name
- String; name of the new Linkfrom
- Node; start Node of the new Linkto
- Node; end Node of the new LinkintermediatePoints
- OTSPoint3D[]; array of intermediate coordinates (may be null)org.opentrafficsim.core.network.NetworkException
- when the design line is degenerate (only one point or duplicate point)public static Lane makeLane(String name, org.opentrafficsim.core.network.OTSNode from, org.opentrafficsim.core.network.OTSNode to, org.opentrafficsim.core.geometry.OTSPoint3D[] intermediatePoints, LaneType laneType, org.djunits.value.vdouble.scalar.Speed speedLimit, org.opentrafficsim.core.dsol.OTSDEVSSimulatorInterface simulator) throws NamingException, org.opentrafficsim.core.network.NetworkException, org.opentrafficsim.core.geometry.OTSGeometryException
name
- String; name of the Lane (and also of the Link that owns it)from
- Node; starting node of the new Laneto
- Node; ending node of the new LaneintermediatePoints
- OTSPoint3D[]; intermediate coordinates or null to create a straight roadlaneType
- LaneType; type of the new LanespeedLimit
- DoubleScalar.Abs<SpeedUnit>; the speed limit on the new Lanesimulator
- OTSDEVSSimulatorInterface; the simulatorNamingException
- when names cannot be registered for animationorg.opentrafficsim.core.network.NetworkException
- on network inconsistencyorg.opentrafficsim.core.geometry.OTSGeometryException
- when creation of center line or contour failspublic static Lane[] makeMultiLane(String name, org.opentrafficsim.core.network.OTSNode from, org.opentrafficsim.core.network.OTSNode to, org.opentrafficsim.core.geometry.OTSPoint3D[] intermediatePoints, int laneCount, int laneOffsetAtStart, int laneOffsetAtEnd, LaneType laneType, org.djunits.value.vdouble.scalar.Speed speedLimit, org.opentrafficsim.core.dsol.OTSDEVSSimulatorInterface simulator) throws NamingException, org.opentrafficsim.core.network.NetworkException, org.opentrafficsim.core.geometry.OTSGeometryException
name
- String; name of the Linkfrom
- Node; starting node of the new Laneto
- Node; ending node of the new LaneintermediatePoints
- OTSPoint3D[]; intermediate coordinates or null to create a straight roadlaneCount
- int; number of lanes in the roadlaneOffsetAtStart
- int; extra offset from design line in lane widths at start of linklaneOffsetAtEnd
- int; extra offset from design line in lane widths at end of linklaneType
- LaneType; type of the new LanesspeedLimit
- DoubleScalar.Abs<SpeedUnit>; the speed limit on all lanessimulator
- OTSDEVSSimulatorInterface; the simulatorNamingException
- when names cannot be registered for animationorg.opentrafficsim.core.network.NetworkException
- on topological problemsorg.opentrafficsim.core.geometry.OTSGeometryException
- when creation of center line or contour failspublic static Lane[] makeMultiLane(String name, org.opentrafficsim.core.network.OTSNode from, org.opentrafficsim.core.network.OTSNode to, org.opentrafficsim.core.geometry.OTSPoint3D[] intermediatePoints, int laneCount, LaneType laneType, org.djunits.value.vdouble.scalar.Speed speedLimit, org.opentrafficsim.core.dsol.OTSDEVSSimulatorInterface simulator) throws NamingException, org.opentrafficsim.core.network.NetworkException, org.opentrafficsim.core.geometry.OTSGeometryException
name
- String; name of the Linkfrom
- Node; starting node of the new Laneto
- Node; ending node of the new LaneintermediatePoints
- OTSPoint3D[]; intermediate coordinates or null to create a straight roadlaneCount
- int; number of lanes in the roadlaneType
- LaneType; type of the new LanesspeedLimit
- DoubleScalar.Abs<SpeedUnit> the speed limit (applies to all generated lanes)simulator
- OTSDEVSSimulatorInterface; the simulatorNamingException
- when names cannot be registered for animationorg.opentrafficsim.core.network.NetworkException
- on topological problemsorg.opentrafficsim.core.geometry.OTSGeometryException
- when creation of center line or contour failsCopyright © 2014–2015 Delft University of Technology. All rights reserved.