estimatePoint method

int estimatePoint(
  1. Coordinate c
)

Implementation

int estimatePoint(Coordinate c) {
  // x, y both have 8 bytes
  int result = 16;
  if (c.z != null && !c.z.isNaN) {
    //} geom.dimension == 3) {
    result += 8;
  }

  if (c.getM() != null && !c.getM().isNaN) {
    //} geom.haveMeasure) {
    result += 8;
  }
  return result;
}