maxPolygonToCellsSize method

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

@defgroup polygonToCells polygonToCells Functions for polygonToCells @{ / /** @brief maximum number of cells that could be in the polygon

Implementation

int maxPolygonToCellsSize(
  ffi.Pointer<GeoPolygon> geoPolygon,
  int res,
  int flags,
  ffi.Pointer<ffi.Int64> out,
) {
  return _maxPolygonToCellsSize(
    geoPolygon,
    res,
    flags,
    out,
  );
}