LineSegment: computeIntersections
private void computeIntersections() {
intersections = new Vector();
for (Enumeration segments =
(collection.otherSegments(this)).elements();
segments.hasMoreElements();) {
(LineSegment) segments.nextElement();
LSPoint p = segIntersection(aLineSeg);
if (p != null) intersections.addElement(p);