bufferOriginalPrecision method

void bufferOriginalPrecision()

Implementation

void bufferOriginalPrecision() {
  try {
    // use fast noding by default
    BufferBuilder bufBuilder = new BufferBuilder(bufParams);
    resultGeometry = bufBuilder.buffer(argGeom, distance);
  } catch (ex) {
    // saveException = ex as Exception;
    // don't propagate the exception - it will be detected by fact that resultGeometry is null

    // testing ONLY - propagate exception
    // throw ex;
  }
}