/**
   * Change the camera model.
   *
   * @param bParallel true for a parallel camera, false for a perspective camera
   */
  public void setParallel(boolean bParallel) {

    // no matter what is passed, only parallel viewing is supported
    super.setParallel(bParallel || true);
  }