LineString line1 = this.geometryFactory.createLineString( LimbGeneratorTest.Utils.createCoords( "0 0, 10 0" ) );
LineString line2 = this.geometryFactory.createLineString( LimbGeneratorTest.Utils.createCoords( "10 0, 10 10" ) );
Geometry point1 = this.geometryFactory.createPoint( new Coordinate( 2000, 2000 ) );
Geometry point2 = this.geometryFactory.createPoint( new Coordinate( 1000, 1000 ) );
Options options = new Options();
options.setNegligibleDistance( 20.0 );
Geometry intersection = this.geometryFactory.createGeometryCollection( new Geometry[]{ line1, point1, line2, point2 } );
Geometry processedIntersection = this.processor.processIntersection( intersection, options );
// The two lines have a combined length smaller than the negligible distance and should be voided.