applyTouchDelta method
Applies touch/pan input as rotation (fallback when no gyroscope).
Implementation
void applyTouchDelta(
double dx,
double dy, {
double touchSensitivity = 0.005,
}) {
target.rotate(-dx * touchSensitivity, -dy * touchSensitivity);
}