hasZ method

bool hasZ()

Checks {@link #getDimension()} and {@link #getMeasures()} to determine if {@link #getZ(int)} is supported.

@return true if {@link #getZ(int)} is supported.

Implementation

bool hasZ() {
  return (getDimension() - getMeasures()) > 2;
}