render method

List<double> render(
  1. int frameCount
)

Implementation

List<double> render(int frameCount) {
  final ptr = _ffiRender(frameCount);
  return ptr.asTypedList(frameCount).toList();
}