示例#1
0
 /**
  * Remove a {@link GVREyePointee} from this holder.
  *
  * <p>No exception is thrown if the eye pointee is not held by this holder.
  *
  * @param eyePointee The {@link GVREyePointee} to remove
  */
 public void removePointee(GVREyePointee eyePointee) {
   pointees.remove(eyePointee);
   NativeEyePointeeHolder.removePointee(getNative(), eyePointee.getNative());
 }
示例#2
0
 /**
  * Add a {@link GVREyePointee} to this holder
  *
  * @param eyePointee The {@link GVREyePointee} to add
  */
 public void addPointee(GVREyePointee eyePointee) {
   pointees.add(eyePointee);
   NativeEyePointeeHolder.addPointee(getNative(), eyePointee.getNative());
 }