setC method

  1. @override
Camera3DD setC(
  1. Camera3DC o
)
override

Copies the fields of the native struct o into this instance.

Implementation

@override
Camera3DD setC(Camera3DC o) {
  position.setC(o.position);
  target.setC(o.target);
  up.setC(o.up);
  fovy = o.fovy;
  projection = .fromValue(o.projection);
  return this;
}