getCameraRotation method

  1. @override
Future<Matrix3> getCameraRotation()
override

Get the camera rotation matrix.

Implementation

@override
Future<Matrix3> getCameraRotation() async {
  throw UnimplementedError();
  // final JSMatrix3 jsRotation = await _shim.getCameraRotation().toDart;
  // return Matrix3.fromList(jsRotation.storage).toDart;
}