initialize method

Future<void> initialize({
  1. bool debug = true,
})

Initializes ANGLE and the depth‑sorter. Must be called before any other method.

Implementation

Future<void> initialize({bool debug = true}) async {
  _angle = FlutterAngle();
  await _angle.init(debug);
  await _depthSorter.initialize();
}