setDart method
Copies the fields of o into this instance.
Implementation
@override
Camera3DD setDart(Camera3DD o) {
position.setDart(o.position);
target.setDart(o.target);
up.setDart(o.up);
fovy = o.fovy;
projection = o.projection;
return this;
}