]> git.r.bdr.sh - rbdr/canvas/blobdiff - src/lib/stores/canvas.js
Save WIP
[rbdr/canvas] / src / lib / stores / canvas.js
index 2a5e89c36e118b5929e93abb84156fb4a1db0b70..ed0a5d73f8a95cd5c53e03bdc4c21f5b6c7d18fa 100644 (file)
@@ -1,24 +1,24 @@
 import { browser } from '$app/environment';
 import { derived, writable } from 'svelte/store';
 
-export const canvas = writable({x: 0, y: 0});
+export const canvas = writable({ x: 0, y: 0 });
 
 export const topLeft = derived(canvas, ($canvas) => {
-  if (browser) {
-    return {
-      x: $canvas.x - window.screen.width/2,
-      y: $canvas.y - window.screen.height/2
-    };
-  }
-  return {x: 0, y: 0}
+       if (browser) {
+               return {
+                       x: $canvas.x - window.screen.width / 2,
+                       y: $canvas.y - window.screen.height / 2
+               };
+       }
+       return { x: 0, y: 0 };
 });
 
 export const bottomRight = derived(canvas, ($canvas) => {
-  if (browser) {
-    return {
-      x: $canvas.x + window.screen.width/2,
-      y: $canvas.y + window.screen.height/2
-    };
-  }
-  return {x: 0, y: 0}
+       if (browser) {
+               return {
+                       x: $canvas.x + window.screen.width / 2,
+                       y: $canvas.y + window.screen.height / 2
+               };
+       }
+       return { x: 0, y: 0 };
 });