getCameraCullingFar method

  1. @override
Future<double> getCameraCullingFar()
override

Get the distance (in world units) to the far culling plane for the active camera.

Implementation

@override
Future<double> getCameraCullingFar() async {
  final result = _module.ccall("get_camera_culling_far", "double",
      ["void*".toJS].toJS, [_viewer!].toJS, null) as JSNumber;
  return result.toDartDouble;
}