initialize method
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();
}