cellAreaRads2 method

int cellAreaRads2(
  1. int h,
  2. Pointer<Double> out
)

@defgroup cellArea cellArea Functions for cellArea @{ / /** @brief exact area for a specific cell (hexagon or pentagon) in radians^2

Implementation

int cellAreaRads2(
  int h,
  ffi.Pointer<ffi.Double> out,
) {
  return _cellAreaRads2(
    h,
    out,
  );
}