getCameraProjectionMatrix method

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

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

Implementation

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