setC method
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;
}