uncompactCells method

int uncompactCells(
  1. Pointer<Uint64> compactedSet,
  2. int numCompacted,
  3. Pointer<Uint64> outSet,
  4. int numOut,
  5. int res,
)

@brief uncompacts the compacted hexagon set

Implementation

int uncompactCells(
  ffi.Pointer<ffi.Uint64> compactedSet,
  int numCompacted,
  ffi.Pointer<ffi.Uint64> outSet,
  int numOut,
  int res,
) {
  return _uncompactCells(
    compactedSet,
    numCompacted,
    outSet,
    numOut,
    res,
  );
}