polygonToCellsExperimental method

int polygonToCellsExperimental(
  1. Pointer<GeoPolygon> polygon,
  2. int res,
  3. int flags,
  4. int size,
  5. Pointer<H3Index> out,
)

@brief cells within the given polygon

Implementation

int polygonToCellsExperimental(
  ffi.Pointer<GeoPolygon> polygon,
  int res,
  int flags,
  int size,
  ffi.Pointer<H3Index> out,
) {
  return _polygonToCellsExperimental(
    polygon,
    res,
    flags,
    size,
    out,
  );
}