setD method

Camera3DC setD(
  1. Camera3DD o
)

Implementation

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