1 package org.opentrafficsim.road.network.lane.object;
2
3 import javax.media.j3d.Bounds;
4
5 import org.djunits.value.vdouble.scalar.Length;
6 import org.djutils.exceptions.Throw;
7 import org.opentrafficsim.core.geometry.OTSGeometryException;
8 import org.opentrafficsim.core.geometry.OTSLine3D;
9 import org.opentrafficsim.core.geometry.OTSPoint3D;
10 import org.opentrafficsim.core.network.LongitudinalDirectionality;
11 import org.opentrafficsim.core.object.ObjectInterface;
12 import org.opentrafficsim.road.network.lane.Lane;
13
14 import nl.tudelft.simulation.language.d3.DirectedPoint;
15
16
17
18
19
20
21
22
23
24
25
26
27
28 public interface LaneBasedObject extends ObjectInterface
29 {
30
31 Lane getLane();
32
33
34 LongitudinalDirectionality getDirection();
35
36
37 Length getLongitudinalPosition();
38
39
40
41
42
43 @Override
44 DirectedPoint getLocation();
45
46
47
48
49
50 @Override
51 Bounds getBounds();
52
53
54
55
56
57
58
59 static OTSLine3D makeGeometry(final Lane lane, final Length position)
60 {
61 Throw.whenNull(lane, "lane is null");
62 Throw.whenNull(position, "position is null");
63 DirectedPoint sp = lane.getCenterLine().getLocationExtended(position);
64 double w45 = 0.45 * lane.getWidth(position).si;
65 double a = sp.getRotZ() + Math.PI / 2.0;
66 OTSPoint3D p1 = new OTSPoint3D(sp.x + w45 * Math.cos(a), sp.y - w45 * Math.sin(a), sp.z + 0.0001);
67 OTSPoint3D p2 = new OTSPoint3D(sp.x - w45 * Math.cos(a), sp.y + w45 * Math.sin(a), sp.z + 0.0001);
68 try
69 {
70 return new OTSLine3D(p1, p2);
71 }
72 catch (OTSGeometryException exception)
73 {
74 throw new RuntimeException(exception);
75 }
76 }
77
78 }