示例#1
0
 /**
  * Moves the camera by the specified displacement in the v direction.
  *
  * @param delta The displacement by which to move
  */
 public void move_v(double delta) {
   m_position = Vector3d.scale_add(delta, m_vVector, m_position);
 }