summaryrefslogtreecommitdiff
path: root/common/vec2.h
diff options
context:
space:
mode:
authora1xd <[email protected]>2021-09-03 18:09:00 -0400
committera1xd <[email protected]>2021-09-23 22:28:44 -0400
commit6a9272d3af202274dfbced245f0ba20b263fcd8b (patch)
treeb139e1d21aac0febc6105ac0d4c480f352d3064a /common/vec2.h
parentadd per-device configuration (diff)
downloadrawaccel-6a9272d3af202274dfbced245f0ba20b263fcd8b.tar.xz
rawaccel-6a9272d3af202274dfbced245f0ba20b263fcd8b.zip
refactor vec2/math
Diffstat (limited to 'common/vec2.h')
-rw-r--r--common/vec2.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/common/vec2.h b/common/vec2.h
deleted file mode 100644
index 6484e69..0000000
--- a/common/vec2.h
+++ /dev/null
@@ -1,9 +0,0 @@
-#pragma once
-
-template <typename T>
-struct vec2 {
- T x;
- T y;
-};
-
-using vec2d = vec2<double>;