public void testGetIM2() {
WktReader wkt = new WktReader();
Geometry g = wkt
.read("POLYGON((-5 -8,10 -20,20 15,-10 10,-5 -8),(1 2,3 1,4 0,3 -2,0 0,1 2))");
Polygon pg = (Polygon) g;
GeoPoint p1 = new GeoPoint(1, 0);
GeoPoint p2 = new GeoPoint(2, 2);
GeoPoint p3 = new GeoPoint(100, 2);
IntersectionMatrix rt = ComputeImFactory.getInstance().getImComputer(p1, pg).getIM();
IntersectionMatrix rt2 = ComputeImFactory.getInstance().getImComputer(p2, pg).getIM();
IntersectionMatrix rt3 = ComputeImFactory.getInstance().getImComputer(p3, pg).getIM();