From da9941939798abe41caa07830a5605f0d131a2f2 Mon Sep 17 00:00:00 2001
From: David Phillips <dbphillipsnz@gmail.com>
Date: Wed, 1 Jun 2016 13:45:28 +1200
Subject: Coords are now centre of image rather than top left

---
 extra/burning-ship-lattice-gen.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'extra')

diff --git a/extra/burning-ship-lattice-gen.sh b/extra/burning-ship-lattice-gen.sh
index 1a39c0d..68f483e 100755
--- a/extra/burning-ship-lattice-gen.sh
+++ b/extra/burning-ship-lattice-gen.sh
@@ -1,3 +1,3 @@
 #!/bin/sh
 
-exec ./burning-ship-gen -x -1.8 -y -0.082 -z 0.09 $@
+exec ../burning-ship-gen -x -1.755 -y -0.037 -z 0.09 $@
-- 
cgit v1.1


From fcc7c9dce8410bb14d9fe546d66010a01eee365e Mon Sep 17 00:00:00 2001
From: David Phillips <dbphillipsnz@gmail.com>
Date: Mon, 19 Sep 2016 11:14:37 +1200
Subject: Allow running of wrapper script from outside its direectory

---
 extra/burning-ship-lattice-gen.sh | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

(limited to 'extra')

diff --git a/extra/burning-ship-lattice-gen.sh b/extra/burning-ship-lattice-gen.sh
index 68f483e..0cb66a1 100755
--- a/extra/burning-ship-lattice-gen.sh
+++ b/extra/burning-ship-lattice-gen.sh
@@ -1,3 +1,5 @@
 #!/bin/sh
 
-exec ../burning-ship-gen -x -1.755 -y -0.037 -z 0.09 $@
+ourdir="$(dirname $0)"
+
+exec "${ourdir}/../burning-ship-gen" -x -1.755 -y -0.037 -z 0.09 $@
-- 
cgit v1.1