We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 966c1dd commit 537dfd2Copy full SHA for 537dfd2
src/screen.ts
@@ -51,7 +51,6 @@ export function findScreenBearing(boundingRectangleBearing: number, preferredBea
51
}
52
53
// Rotate the bearing 180 degrees if the preferred bearing is on the opposite side of the screen
54
- console.log(bearing < (preferredBearing - 90) % 360, bearing > (preferredBearing + 90) % 360);
55
if (bearing < (preferredBearing - 90) % 360 || bearing > (preferredBearing + 90) % 360) {
56
bearing = (bearing + 180) % 360;
57
0 commit comments