cellToChildPos method

int cellToChildPos(
  1. int child,
  2. int parentRes,
  3. Pointer<Int64> out
)

@defgroup cellToChildPos cellToChildPos Functions for cellToChildPos @{ / /** @brief Returns the position of the cell within an ordered list of all children of the cell's parent at the specified resolution

Implementation

int cellToChildPos(
  int child,
  int parentRes,
  ffi.Pointer<ffi.Int64> out,
) {
  return _cellToChildPos(
    child,
    parentRes,
    out,
  );
}