summaryrefslogtreecommitdiff
path: root/lisparuga/utils.scm
diff options
context:
space:
mode:
Diffstat (limited to 'lisparuga/utils.scm')
-rw-r--r--lisparuga/utils.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/lisparuga/utils.scm b/lisparuga/utils.scm
new file mode 100644
index 0000000..f5f02b1
--- /dev/null
+++ b/lisparuga/utils.scm
@@ -0,0 +1,23 @@
+;;; Lisparuga
+;;; Copyright © 2016 David Thompson <davet@gnu.org>
+;;;
+;;; Lisparuga is free software: you can redistribute it and/or modify
+;;; it under the terms of the GNU General Public License as published
+;;; by the Free Software Foundation, either version 3 of the License,
+;;; or (at your option) any later version.
+;;;
+;;; Lisparuga is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;;; General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with Lisparuga. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (lisparuga utils)
+ #:use-module (sly math vector)
+ #:export (resolution
+ origin2))
+
+(define resolution (vector2 120 160))
+(define origin2 (vector2 0 0))