MCPcopy Create free account
hub / github.com/OpenEndedGroup/Field2 / updateAll

Method updateAll

src/main/java/field/graphics/Scene.java:208–210  ·  view source on GitHub ↗

updates everything in the internalScene. This is the main entry point for performing a complete update cycle.

()

Source from the content-addressed store, hash-verified

206 * updates everything in the internalScene. This is the main entry point for performing a complete update cycle.
207 */
208 public void updateAll() {
209 update(new ArrayDeque<Pair<Integer, Callable<Boolean>>>());
210 }
211
212 protected boolean update(int midpoint, Callable<Boolean> middle) {
213 return update(new ArrayDeque<>(Arrays.asList(new Pair<Integer, Callable<Boolean>>(midpoint, middle))));

Callers 5

drawNowMethod · 0.95
updateSceneMethod · 0.80
enterMainLoopMethod · 0.80
drawMethod · 0.80
updateSceneMethod · 0.80

Calls 1

updateMethod · 0.95

Tested by

no test coverage detected