class_intersection - AiAUJI/PAUSETA GitHub Wiki
Represents the union of several segments. A roundabout, a crossroad, a change of route...
- Intersection()
- Intersection(ArrayList<Segment> in, ArrayList<Segment> out)
- addInSegment(Segment segment)
- addOutSegment(Segment segment)
- ArrayList<Segment> in
- ArrayList<Segment> out
Intersection()
Default constructor.
Intersection(ArrayList<Segment> in, ArrayList<Segment> out)
Constructor.
addInSegment(Segment segment)
Adds an in segment to the intersection.
addOutSegment(Segment segment)
Adds an out segment to the intersection
ArrayList<Segment> in
List of segments that go inside the intersection.
ArrayList<Segment> out
List of segments that go otuside the intersection.