h3IsResClassIII method

  1. @override
bool h3IsResClassIII(
  1. BigInt h3Index
)
override

Determines if h3Index is Class III (rotated versus the icosahedron and subject to shape distortion adding extra points on icosahedron edges, making them not true hexagons).

Implementation

@override
bool h3IsResClassIII(BigInt h3Index) {
  return h3_js.h3IsResClassIII(h3Index.toH3JS());
}