/** * 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()); }
/** * 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()); }