MCPcopy Index your code
hub / github.com/benfry/processing4 / frameMoved

Method frameMoved

core/src/processing/core/PApplet.java:9711–9714  ·  view source on GitHub ↗

When running from the PDE, this saves the window position for next time the sketch is run. Needs to remain a separate method so that it can be overridden by Python Mode.

(int newX, int newY)

Source from the content-addressed store, hash-verified

9709 * so that it can be overridden by Python Mode.
9710 */
9711 public void frameMoved(int newX, int newY) {
9712 System.err.println(EXTERNAL_MOVE + " " + newX + " " + newY);
9713 System.err.flush(); // doesn't seem to help or hurt
9714 }
9715
9716
9717 /**

Callers 1

postWindowMovedMethod · 0.95

Calls 2

printlnMethod · 0.45
flushMethod · 0.45

Tested by

no test coverage detected