maxPolygonToCellsSizeExperimental method

int maxPolygonToCellsSizeExperimental(
  1. Pointer<GeoPolygon> polygon,
  2. int res,
  3. int flags,
  4. Pointer<Int64> out,
)

@defgroup polygonToCellsExperimental polygonToCellsExperimental Functions for polygonToCellsExperimental. This is an experimental-only API and is subject to change in minor versions. @{ / /** @brief maximum number of cells that could be in the polygon

Implementation

int maxPolygonToCellsSizeExperimental(
  ffi.Pointer<GeoPolygon> polygon,
  int res,
  int flags,
  ffi.Pointer<ffi.Int64> out,
) {
  return _maxPolygonToCellsSizeExperimental(
    polygon,
    res,
    flags,
    out,
  );
}