Compare commits
2 Commits
ca6d7d7d0b
...
66aa5d1712
Author | SHA1 | Date |
---|---|---|
|
66aa5d1712 | |
|
9ca86eb862 |
|
@ -0,0 +1,21 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
###########################
|
||||||
|
#
|
||||||
|
# Draws all svgs in a sequence. Starts with a
|
||||||
|
# fieldguide unless beginning the sequence not
|
||||||
|
# on the first frame, provided as the second argument.
|
||||||
|
#
|
||||||
|
###########################
|
||||||
|
|
||||||
|
source ./common.sh
|
||||||
|
|
||||||
|
dbSetup
|
||||||
|
|
||||||
|
|
||||||
|
for i in {1..4} ; do
|
||||||
|
echo "Drawing focus field ${i}..."
|
||||||
|
bash field.sh "${i}"
|
||||||
|
|
||||||
|
askContinue "Draw next focus field?" "Drawing next field..."
|
||||||
|
done
|
|
@ -0,0 +1,16 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ ! -d "numbers/node_modules" ]; then
|
||||||
|
cd numbers
|
||||||
|
npm i
|
||||||
|
cd ..
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -d "fourcell/env" ]; then
|
||||||
|
cd fourcell
|
||||||
|
python -m venv env
|
||||||
|
source env/bin/activate
|
||||||
|
python -m pip install -r requirements.txt
|
||||||
|
deactivate
|
||||||
|
cd ..
|
||||||
|
fi
|
|
@ -5,6 +5,7 @@
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
|
"name": "numbers",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"name": "animation",
|
||||||
|
"lockfileVersion": 2,
|
||||||
|
"requires": true,
|
||||||
|
"packages": {}
|
||||||
|
}
|
Loading…
Reference in New Issue