Camera Position/Target interface is dangerous
Conside:
cam.setPosition(...);
cam.setTarget(...);
Which behaves differently than
cam.setTarget(...);
cam.setPosition(...);
which is a dangerous interface.
I propose we add cam.setLookAt(pos, target [, up]);
Edited by Philip Trettner