delta method
Implementation
void delta(double width, double height) {
if (whenOutOfScreenMode == WhenOutOfScreenMode.none)
deltaNone(width, height);
else if (whenOutOfScreenMode == WhenOutOfScreenMode.Teleport)
deltaTeleport(width, height);
else
deltaReflect(width, height);
}