intersectsInALine?  intersectsLinearly? intersectsDimension1?

Paul Austin wrote:
I'm trying to think of a name to describe and intersection between two lines, where the intersection between the two is a line (so it ignores any point intesections). This would be detected using the following.

IntersectionMatrix relate = line1.relate(line2);
if (relate.get(0, 0) == Dimension.L) {
  return true
} else {
  return false;
}

Can anyone think of a catchy name to describe an operator implementing this? Something like intersectsLine.

Cheers,
Paul
------------------------------------------------------------------------

_______________________________________________
jts-devel mailing list
[email protected]
http://lists.refractions.net/mailman/listinfo/jts-devel

--
Martin Davis
Senior Technical Architect
Refractions Research, Inc.
(250) 383-3022

_______________________________________________
jts-devel mailing list
[email protected]
http://lists.refractions.net/mailman/listinfo/jts-devel

Reply via email to