setC method

Camera3DC setC(
  1. Camera3DC o
)

Implementation

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