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-03 18:09:00 -0400
commitd12c000ae2c6937ae5d4b43fa6dde18490756cf8 (patch)
tree0be0683b5132e6c5ade5dc7d3e5981cd7e9cb353 /common/vec2.h
parentadd per-device configuration (diff)
downloadrawaccel-d12c000ae2c6937ae5d4b43fa6dde18490756cf8.tar.xz
rawaccel-d12c000ae2c6937ae5d4b43fa6dde18490756cf8.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>;