getCameraCullingNear method

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

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

Implementation

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