getCameraViewMatrix method

  1. @override
Future<Matrix4> getCameraViewMatrix()
override

Get the camera's view matrix. See Camera.h for more details.

Implementation

@override
Future<Matrix4> getCameraViewMatrix() async {
  throw UnimplementedError();
  // final JSMatrix4 jsMatrix = await _shim.getCameraViewMatrix().toDart;
  // return Matrix4.fromList(jsMatrix.storage).toDart;
}