Camera_setProjectionFromFov function

  1. @Native<Void Function(Pointer<TCamera>, Double, Double, Double, Double, Bool)>(ffi.Pointer<TCamera>, ffi.Double, ffi.Double, ffi.Double, ffi.Double, ffi.Bool)>(isLeaf: true)
void Camera_setProjectionFromFov(
  1. Pointer<TCamera> camera,
  2. double fovInDegrees,
  3. double aspect,
  4. double near,
  5. double far,
  6. bool horizontal,
)

Implementation

@ffi.Native<
    ffi.Void Function(ffi.Pointer<TCamera>, ffi.Double, ffi.Double, ffi.Double,
        ffi.Double, ffi.Bool)>(isLeaf: true)
external void Camera_setProjectionFromFov(
  ffi.Pointer<TCamera> camera,
  double fovInDegrees,
  double aspect,
  double near,
  double far,
  bool horizontal,
);