diff options
| -rw-r--r-- | ablobfoxdundundun1.svg (renamed from blobfoxdundundun1.svg) | 0 | ||||
| -rw-r--r-- | ablobfoxdundundun2.svg (renamed from blobfoxdundundun2.svg) | 0 | ||||
| -rw-r--r-- | ablobfoxdundundun3.svg (renamed from blobfoxdundundun3.svg) | 0 | ||||
| -rw-r--r-- | ablobfoxdundundun4.svg (renamed from blobfoxdundundun4.svg) | 0 | ||||
| -rw-r--r-- | ablobfoxhyper1.svg (renamed from blobfoxhyper1.svg) | 0 | ||||
| -rw-r--r-- | ablobfoxhyper2.svg (renamed from blobfoxhyper2.svg) | 0 | ||||
| -rw-r--r-- | ablobfoxhyper3.svg (renamed from blobfoxhyper3.svg) | 0 | ||||
| -rw-r--r-- | ablobfoxhypercofe.svg (renamed from blobfoxhypercofe.svg) | 0 | ||||
| -rw-r--r-- | ablobfoxhyperowo.svg (renamed from blobfoxhyperowo.svg) | 0 | ||||
| -rw-r--r-- | ablobfoxhyperthinking.svg (renamed from blobfoxhyperthinking.svg) | 0 | ||||
| -rwxr-xr-x | animate.sh | 35 | ||||
| -rwxr-xr-x | blobfoxdundundun.sh | 10 | ||||
| -rw-r--r-- | blobfoxlurk.svg | 6 | ||||
| -rw-r--r-- | blobfoxlurkaww.svg | 10 | ||||
| -rw-r--r-- | blobfoxlurkglare.svg | 4 | ||||
| -rw-r--r-- | blobfoxlurkowo.svg | 6 | ||||
| -rw-r--r-- | blobfoxlurkowonotice.svg | 4 | ||||
| -rw-r--r-- | blobfoxprelurkcofe.svg | 8 | ||||
| -rw-r--r-- | blobfoxprelurkcroutons.svg | 8 | ||||
| -rw-r--r-- | blobfoxprelurkdonut.svg | 8 | ||||
| -rwxr-xr-x | gen.sh | 12 | ||||
| -rwxr-xr-x | hyperize.sh | 2 |
22 files changed, 74 insertions, 39 deletions
diff --git a/blobfoxdundundun1.svg b/ablobfoxdundundun1.svg index 3abbca0..3abbca0 100644 --- a/blobfoxdundundun1.svg +++ b/ablobfoxdundundun1.svg | |||
diff --git a/blobfoxdundundun2.svg b/ablobfoxdundundun2.svg index 3c764c0..3c764c0 100644 --- a/blobfoxdundundun2.svg +++ b/ablobfoxdundundun2.svg | |||
diff --git a/blobfoxdundundun3.svg b/ablobfoxdundundun3.svg index 7f9af5e..7f9af5e 100644 --- a/blobfoxdundundun3.svg +++ b/ablobfoxdundundun3.svg | |||
diff --git a/blobfoxdundundun4.svg b/ablobfoxdundundun4.svg index 32961ba..32961ba 100644 --- a/blobfoxdundundun4.svg +++ b/ablobfoxdundundun4.svg | |||
diff --git a/blobfoxhyper1.svg b/ablobfoxhyper1.svg index 07e7ebe..07e7ebe 100644 --- a/blobfoxhyper1.svg +++ b/ablobfoxhyper1.svg | |||
diff --git a/blobfoxhyper2.svg b/ablobfoxhyper2.svg index a789665..a789665 100644 --- a/blobfoxhyper2.svg +++ b/ablobfoxhyper2.svg | |||
diff --git a/blobfoxhyper3.svg b/ablobfoxhyper3.svg index ef5c1a4..ef5c1a4 100644 --- a/blobfoxhyper3.svg +++ b/ablobfoxhyper3.svg | |||
diff --git a/blobfoxhypercofe.svg b/ablobfoxhypercofe.svg index 3218db2..3218db2 100644 --- a/blobfoxhypercofe.svg +++ b/ablobfoxhypercofe.svg | |||
diff --git a/blobfoxhyperowo.svg b/ablobfoxhyperowo.svg index f212526..f212526 100644 --- a/blobfoxhyperowo.svg +++ b/ablobfoxhyperowo.svg | |||
diff --git a/blobfoxhyperthinking.svg b/ablobfoxhyperthinking.svg index b7f70dc..b7f70dc 100644 --- a/blobfoxhyperthinking.svg +++ b/ablobfoxhyperthinking.svg | |||
diff --git a/animate.sh b/animate.sh new file mode 100755 index 0000000..8d8afda --- /dev/null +++ b/animate.sh | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | SOURCEBASE=$1 | ||
| 4 | MAX=$2 | ||
| 5 | DELAY=$3 | ||
| 6 | SOURCESVG=`printf "%s.svg" $SOURCEBASE` | ||
| 7 | TARGETSVG=`printf "export/%s.png" $SOURCEBASE` | ||
| 8 | |||
| 9 | |||
| 10 | mkdir -p export_tmp | ||
| 11 | rm -f export_tmp/* | ||
| 12 | |||
| 13 | |||
| 14 | counter=1 | ||
| 15 | while [ $counter -le $MAX ] | ||
| 16 | do | ||
| 17 | source=`printf "%s%s.svg" $SOURCEBASE $counter` | ||
| 18 | file=`printf "export_tmp/%s.png" $counter` | ||
| 19 | inkscape -z -e $file $source | ||
| 20 | ((counter++)) | ||
| 21 | done | ||
| 22 | |||
| 23 | |||
| 24 | declare -a args | ||
| 25 | |||
| 26 | counter=1 | ||
| 27 | while [ $counter -le $MAX ] | ||
| 28 | do | ||
| 29 | file=`printf "export_tmp/%s.png" $counter` | ||
| 30 | args+=($file $DELAY) | ||
| 31 | ((counter++)) | ||
| 32 | done | ||
| 33 | |||
| 34 | apngasm -o $TARGETSVG ${args[@]} | ||
| 35 | rm -f export_tmp/* | ||
diff --git a/blobfoxdundundun.sh b/blobfoxdundundun.sh index 98a8a89..f0c23e0 100755 --- a/blobfoxdundundun.sh +++ b/blobfoxdundundun.sh | |||
| @@ -10,17 +10,17 @@ mkdir -p export_tmp | |||
| 10 | rm -f export_tmp/* | 10 | rm -f export_tmp/* |
| 11 | 11 | ||
| 12 | 12 | ||
| 13 | inkscape -z -e "export_tmp/1.png" "blobfoxdundundun1.svg" | 13 | inkscape -z -e "export_tmp/1.png" "ablobfoxdundundun1.svg" |
| 14 | inkscape -z -e "export_tmp/2.png" "blobfoxdundundun2.svg" | 14 | inkscape -z -e "export_tmp/2.png" "ablobfoxdundundun2.svg" |
| 15 | inkscape -z -e "export_tmp/3.png" "blobfoxdundundun3.svg" | 15 | inkscape -z -e "export_tmp/3.png" "ablobfoxdundundun3.svg" |
| 16 | inkscape -z -e "export_tmp/4.png" "blobfoxdundundun4.svg" | 16 | inkscape -z -e "export_tmp/4.png" "ablobfoxdundundun4.svg" |
| 17 | 17 | ||
| 18 | counter=5 | 18 | counter=5 |
| 19 | while [ $counter -le 79 ] | 19 | while [ $counter -le 79 ] |
| 20 | do | 20 | do |
| 21 | offset=${shakeOffsets[counter-5]} | 21 | offset=${shakeOffsets[counter-5]} |
| 22 | file=`printf "export_tmp/%s.png" $counter` | 22 | file=`printf "export_tmp/%s.png" $counter` |
| 23 | inkscape -z -e $file -a $offset "blobfoxdundundun4.svg" | 23 | inkscape -z -e $file -a $offset "ablobfoxdundundun4.svg" |
| 24 | ((counter++)) | 24 | ((counter++)) |
| 25 | done | 25 | done |
| 26 | 26 | ||
diff --git a/blobfoxlurk.svg b/blobfoxlurk.svg index 651a6ec..24bd390 100644 --- a/blobfoxlurk.svg +++ b/blobfoxlurk.svg | |||
| @@ -407,8 +407,8 @@ | |||
| 407 | inkscape:pageopacity="0.0" | 407 | inkscape:pageopacity="0.0" |
| 408 | inkscape:pageshadow="2" | 408 | inkscape:pageshadow="2" |
| 409 | inkscape:zoom="2.8" | 409 | inkscape:zoom="2.8" |
| 410 | inkscape:cx="-320.60515" | 410 | inkscape:cx="-176.14086" |
| 411 | inkscape:cy="61.509305" | 411 | inkscape:cy="74.366448" |
| 412 | inkscape:document-units="px" | 412 | inkscape:document-units="px" |
| 413 | inkscape:current-layer="layer1" | 413 | inkscape:current-layer="layer1" |
| 414 | showgrid="false" | 414 | showgrid="false" |
| @@ -519,7 +519,7 @@ | |||
| 519 | inkscape:connector-curvature="0" | 519 | inkscape:connector-curvature="0" |
| 520 | id="path4957" | 520 | id="path4957" |
| 521 | d="m 26.911905,104.15164 127.999995,9.9437 v 13.87371 H 26.911905 Z" | 521 | d="m 26.911905,104.15164 127.999995,9.9437 v 13.87371 H 26.911905 Z" |
| 522 | style="display:inline;opacity:0.5;fill:#f5f8fa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" /> | 522 | style="display:inline;opacity:1;fill:#f5f8fa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" /> |
| 523 | <path | 523 | <path |
| 524 | inkscape:connector-curvature="0" | 524 | inkscape:connector-curvature="0" |
| 525 | style="display:inline;opacity:1;fill:#313131;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.50000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" | 525 | style="display:inline;opacity:1;fill:#313131;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.50000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" |
diff --git a/blobfoxlurkaww.svg b/blobfoxlurkaww.svg index dbd3b04..b9132b6 100644 --- a/blobfoxlurkaww.svg +++ b/blobfoxlurkaww.svg | |||
| @@ -406,9 +406,9 @@ | |||
| 406 | borderopacity="1.0" | 406 | borderopacity="1.0" |
| 407 | inkscape:pageopacity="0.0" | 407 | inkscape:pageopacity="0.0" |
| 408 | inkscape:pageshadow="2" | 408 | inkscape:pageshadow="2" |
| 409 | inkscape:zoom="0.98994949" | 409 | inkscape:zoom="3.959798" |
| 410 | inkscape:cx="-484.59336" | 410 | inkscape:cx="-112.21341" |
| 411 | inkscape:cy="141.07734" | 411 | inkscape:cy="45.415993" |
| 412 | inkscape:document-units="px" | 412 | inkscape:document-units="px" |
| 413 | inkscape:current-layer="layer1" | 413 | inkscape:current-layer="layer1" |
| 414 | showgrid="false" | 414 | showgrid="false" |
| @@ -431,7 +431,7 @@ | |||
| 431 | <dc:format>image/svg+xml</dc:format> | 431 | <dc:format>image/svg+xml</dc:format> |
| 432 | <dc:type | 432 | <dc:type |
| 433 | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | 433 | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> |
| 434 | <dc:title></dc:title> | 434 | <dc:title /> |
| 435 | </cc:Work> | 435 | </cc:Work> |
| 436 | </rdf:RDF> | 436 | </rdf:RDF> |
| 437 | </metadata> | 437 | </metadata> |
| @@ -545,7 +545,7 @@ | |||
| 545 | inkscape:connector-curvature="0" | 545 | inkscape:connector-curvature="0" |
| 546 | id="path4957" | 546 | id="path4957" |
| 547 | d="m 26.911905,104.15164 127.999995,9.9437 v 13.87371 H 26.911905 Z" | 547 | d="m 26.911905,104.15164 127.999995,9.9437 v 13.87371 H 26.911905 Z" |
| 548 | style="display:inline;opacity:0.5;fill:#f5f8fa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" /> | 548 | style="display:inline;opacity:1;fill:#f5f8fa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" /> |
| 549 | <path | 549 | <path |
| 550 | inkscape:connector-curvature="0" | 550 | inkscape:connector-curvature="0" |
| 551 | style="display:inline;opacity:1;fill:#313131;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.50000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" | 551 | style="display:inline;opacity:1;fill:#313131;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.50000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" |
diff --git a/blobfoxlurkglare.svg b/blobfoxlurkglare.svg index d143c14..30efedb 100644 --- a/blobfoxlurkglare.svg +++ b/blobfoxlurkglare.svg | |||
| @@ -267,7 +267,7 @@ | |||
| 267 | inkscape:pageopacity="0.0" | 267 | inkscape:pageopacity="0.0" |
| 268 | inkscape:pageshadow="2" | 268 | inkscape:pageshadow="2" |
| 269 | inkscape:zoom="7.919596" | 269 | inkscape:zoom="7.919596" |
| 270 | inkscape:cx="-19.10329" | 270 | inkscape:cx="-59.825064" |
| 271 | inkscape:cy="34.852615" | 271 | inkscape:cy="34.852615" |
| 272 | inkscape:document-units="px" | 272 | inkscape:document-units="px" |
| 273 | inkscape:current-layer="layer1" | 273 | inkscape:current-layer="layer1" |
| @@ -432,7 +432,7 @@ | |||
| 432 | inkscape:connector-curvature="0" | 432 | inkscape:connector-curvature="0" |
| 433 | id="path4957" | 433 | id="path4957" |
| 434 | d="m 26.911905,104.15165 127.999995,9.94369 v 13.87371 H 26.911905 Z" | 434 | d="m 26.911905,104.15165 127.999995,9.94369 v 13.87371 H 26.911905 Z" |
| 435 | style="display:inline;opacity:0.5;fill:#f5f8fa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" /> | 435 | style="display:inline;opacity:1;fill:#f5f8fa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" /> |
| 436 | <path | 436 | <path |
| 437 | inkscape:connector-curvature="0" | 437 | inkscape:connector-curvature="0" |
| 438 | style="display:inline;opacity:1;fill:#313131;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.50000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" | 438 | style="display:inline;opacity:1;fill:#313131;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.50000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" |
diff --git a/blobfoxlurkowo.svg b/blobfoxlurkowo.svg index 04e9fda..3acb7d5 100644 --- a/blobfoxlurkowo.svg +++ b/blobfoxlurkowo.svg | |||
| @@ -263,8 +263,8 @@ | |||
| 263 | inkscape:pageopacity="0.0" | 263 | inkscape:pageopacity="0.0" |
| 264 | inkscape:pageshadow="2" | 264 | inkscape:pageshadow="2" |
| 265 | inkscape:zoom="2.8" | 265 | inkscape:zoom="2.8" |
| 266 | inkscape:cx="-282.27402" | 266 | inkscape:cx="-82.452591" |
| 267 | inkscape:cy="98.285311" | 267 | inkscape:cy="13.999597" |
| 268 | inkscape:document-units="px" | 268 | inkscape:document-units="px" |
| 269 | inkscape:current-layer="layer1" | 269 | inkscape:current-layer="layer1" |
| 270 | showgrid="false" | 270 | showgrid="false" |
| @@ -368,7 +368,7 @@ | |||
| 368 | inkscape:connector-curvature="0" | 368 | inkscape:connector-curvature="0" |
| 369 | id="path4957" | 369 | id="path4957" |
| 370 | d="m 26.911905,104.15165 128.000005,9.94369 v 13.87371 H 26.911905 Z" | 370 | d="m 26.911905,104.15165 128.000005,9.94369 v 13.87371 H 26.911905 Z" |
| 371 | style="opacity:0.5;fill:#f5f8fa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" /> | 371 | style="opacity:1;fill:#f5f8fa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" /> |
| 372 | <path | 372 | <path |
| 373 | style="opacity:1;fill:#313131;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.79999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" | 373 | style="opacity:1;fill:#313131;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.79999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" |
| 374 | d="m 85.869259,96.276847 c 0.11393,1.43035 -5.957905,6.772503 -8.408463,6.661903 -2.640097,-0.11917 -6.500044,-6.315403 -6.087614,-7.687233 1.047059,-3.48275 14.182208,-2.91548 14.496077,1.02533 z" | 374 | d="m 85.869259,96.276847 c 0.11393,1.43035 -5.957905,6.772503 -8.408463,6.661903 -2.640097,-0.11917 -6.500044,-6.315403 -6.087614,-7.687233 1.047059,-3.48275 14.182208,-2.91548 14.496077,1.02533 z" |
diff --git a/blobfoxlurkowonotice.svg b/blobfoxlurkowonotice.svg index 4ee2037..eb54870 100644 --- a/blobfoxlurkowonotice.svg +++ b/blobfoxlurkowonotice.svg | |||
| @@ -219,7 +219,7 @@ | |||
| 219 | inkscape:pageopacity="0.0" | 219 | inkscape:pageopacity="0.0" |
| 220 | inkscape:pageshadow="2" | 220 | inkscape:pageshadow="2" |
| 221 | inkscape:zoom="3.959798" | 221 | inkscape:zoom="3.959798" |
| 222 | inkscape:cx="-105.30486" | 222 | inkscape:cx="-186.74841" |
| 223 | inkscape:cy="54.087572" | 223 | inkscape:cy="54.087572" |
| 224 | inkscape:document-units="px" | 224 | inkscape:document-units="px" |
| 225 | inkscape:current-layer="layer1" | 225 | inkscape:current-layer="layer1" |
| @@ -365,7 +365,7 @@ | |||
| 365 | inkscape:connector-curvature="0" | 365 | inkscape:connector-curvature="0" |
| 366 | id="path4957" | 366 | id="path4957" |
| 367 | d="m 26.911905,104.15165 127.999995,9.94369 v 13.87371 H 26.911905 Z" | 367 | d="m 26.911905,104.15165 127.999995,9.94369 v 13.87371 H 26.911905 Z" |
| 368 | style="display:inline;opacity:0.5;fill:#f5f8fa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" /> | 368 | style="display:inline;opacity:1;fill:#f5f8fa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" /> |
| 369 | <path | 369 | <path |
| 370 | inkscape:connector-curvature="0" | 370 | inkscape:connector-curvature="0" |
| 371 | style="display:inline;opacity:1;fill:#313131;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.50000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" | 371 | style="display:inline;opacity:1;fill:#313131;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.50000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" |
diff --git a/blobfoxprelurkcofe.svg b/blobfoxprelurkcofe.svg index 1a42832..60cdc03 100644 --- a/blobfoxprelurkcofe.svg +++ b/blobfoxprelurkcofe.svg | |||
| @@ -262,9 +262,9 @@ | |||
| 262 | borderopacity="1.0" | 262 | borderopacity="1.0" |
| 263 | inkscape:pageopacity="0.0" | 263 | inkscape:pageopacity="0.0" |
| 264 | inkscape:pageshadow="2" | 264 | inkscape:pageshadow="2" |
| 265 | inkscape:zoom="11.2" | 265 | inkscape:zoom="2.8" |
| 266 | inkscape:cx="70.814694" | 266 | inkscape:cx="51.824868" |
| 267 | inkscape:cy="11.121417" | 267 | inkscape:cy="-24.011201" |
| 268 | inkscape:document-units="px" | 268 | inkscape:document-units="px" |
| 269 | inkscape:current-layer="layer3" | 269 | inkscape:current-layer="layer3" |
| 270 | showgrid="false" | 270 | showgrid="false" |
| @@ -314,7 +314,7 @@ | |||
| 314 | transform="translate(-26.911905,0.03095311)" | 314 | transform="translate(-26.911905,0.03095311)" |
| 315 | style="display:inline"> | 315 | style="display:inline"> |
| 316 | <path | 316 | <path |
| 317 | style="opacity:0.5;fill:#f5f8fa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" | 317 | style="opacity:1;fill:#f5f8fa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" |
| 318 | d="m 26.911905,92.049047 128.000005,9.943693 v 25.97631 H 26.911905 Z" | 318 | d="m 26.911905,92.049047 128.000005,9.943693 v 25.97631 H 26.911905 Z" |
| 319 | id="rect4948" | 319 | id="rect4948" |
| 320 | inkscape:connector-curvature="0" | 320 | inkscape:connector-curvature="0" |
diff --git a/blobfoxprelurkcroutons.svg b/blobfoxprelurkcroutons.svg index 102333b..e2d0680 100644 --- a/blobfoxprelurkcroutons.svg +++ b/blobfoxprelurkcroutons.svg | |||
| @@ -981,8 +981,8 @@ | |||
| 981 | inkscape:pageopacity="0.0" | 981 | inkscape:pageopacity="0.0" |
| 982 | inkscape:pageshadow="2" | 982 | inkscape:pageshadow="2" |
| 983 | inkscape:zoom="4" | 983 | inkscape:zoom="4" |
| 984 | inkscape:cx="68.076907" | 984 | inkscape:cx="189.45191" |
| 985 | inkscape:cy="31.638448" | 985 | inkscape:cy="54.888448" |
| 986 | inkscape:document-units="px" | 986 | inkscape:document-units="px" |
| 987 | inkscape:current-layer="layer1" | 987 | inkscape:current-layer="layer1" |
| 988 | showgrid="false" | 988 | showgrid="false" |
| @@ -1009,7 +1009,7 @@ | |||
| 1009 | <dc:format>image/svg+xml</dc:format> | 1009 | <dc:format>image/svg+xml</dc:format> |
| 1010 | <dc:type | 1010 | <dc:type |
| 1011 | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | 1011 | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> |
| 1012 | <dc:title></dc:title> | 1012 | <dc:title /> |
| 1013 | </cc:Work> | 1013 | </cc:Work> |
| 1014 | </rdf:RDF> | 1014 | </rdf:RDF> |
| 1015 | </metadata> | 1015 | </metadata> |
| @@ -1032,7 +1032,7 @@ | |||
| 1032 | transform="translate(-26.911905,0.03095311)" | 1032 | transform="translate(-26.911905,0.03095311)" |
| 1033 | style="display:inline"> | 1033 | style="display:inline"> |
| 1034 | <path | 1034 | <path |
| 1035 | style="opacity:0.5;fill:#f5f8fa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" | 1035 | style="opacity:1;fill:#f5f8fa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" |
| 1036 | d="m 26.911905,92.049047 128.000005,9.943693 v 25.97631 H 26.911905 Z" | 1036 | d="m 26.911905,92.049047 128.000005,9.943693 v 25.97631 H 26.911905 Z" |
| 1037 | id="rect4948" | 1037 | id="rect4948" |
| 1038 | inkscape:connector-curvature="0" | 1038 | inkscape:connector-curvature="0" |
diff --git a/blobfoxprelurkdonut.svg b/blobfoxprelurkdonut.svg index 24532e5..5173fbf 100644 --- a/blobfoxprelurkdonut.svg +++ b/blobfoxprelurkdonut.svg | |||
| @@ -639,9 +639,9 @@ | |||
| 639 | borderopacity="1.0" | 639 | borderopacity="1.0" |
| 640 | inkscape:pageopacity="0.0" | 640 | inkscape:pageopacity="0.0" |
| 641 | inkscape:pageshadow="2" | 641 | inkscape:pageshadow="2" |
| 642 | inkscape:zoom="2" | 642 | inkscape:zoom="5.6568542" |
| 643 | inkscape:cx="33.840941" | 643 | inkscape:cx="34.181711" |
| 644 | inkscape:cy="157.77845" | 644 | inkscape:cy="36.012814" |
| 645 | inkscape:document-units="px" | 645 | inkscape:document-units="px" |
| 646 | inkscape:current-layer="layer1" | 646 | inkscape:current-layer="layer1" |
| 647 | showgrid="false" | 647 | showgrid="false" |
| @@ -691,7 +691,7 @@ | |||
| 691 | transform="translate(-26.911905,0.03095311)" | 691 | transform="translate(-26.911905,0.03095311)" |
| 692 | style="display:inline"> | 692 | style="display:inline"> |
| 693 | <path | 693 | <path |
| 694 | style="opacity:0.5;fill:#f5f8fa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" | 694 | style="opacity:1;fill:#f5f8fa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" |
| 695 | d="m 26.911905,92.049047 128.000005,9.943693 v 25.97631 H 26.911905 Z" | 695 | d="m 26.911905,92.049047 128.000005,9.943693 v 25.97631 H 26.911905 Z" |
| 696 | id="rect4948" | 696 | id="rect4948" |
| 697 | inkscape:connector-curvature="0" | 697 | inkscape:connector-curvature="0" |
| @@ -6,18 +6,18 @@ rm -f export/* | |||
| 6 | mkdir -p export_flip | 6 | mkdir -p export_flip |
| 7 | rm -f export_flip/* | 7 | rm -f export_flip/* |
| 8 | 8 | ||
| 9 | find . -type f \( -iname "*.svg" ! -iname ".*" \) -print0 | parallel -0 'x={.}; inkscape -z -e "export/${x#./}.png" "{}"' {} \; | 9 | find . -type f \( -iname "*.svg" ! -iname ".*" ! -iname "a*" \) -print0 | parallel -0 'x={.}; inkscape -z -e "export/${x#./}.png" "{}"' {} \; |
| 10 | ./blobfoxdundundun.sh | 10 | ./blobfoxdundundun.sh |
| 11 | ./hyperize.sh blobfoxhyperowo | 11 | ./hyperize.sh ablobfoxhyperowo |
| 12 | ./hyperize.sh blobfoxhypercofe | 12 | ./hyperize.sh ablobfoxhypercofe |
| 13 | ./hyperize.sh blobfoxhyperthinking | 13 | ./hyperize.sh ablobfoxhyperthinking |
| 14 | ./animate.sh ablobfoxhyper 3 2:100 | ||
| 14 | cp LICENSE export/ | 15 | cp LICENSE export/ |
| 15 | 16 | ||
| 16 | cd export | 17 | cd export |
| 17 | apngasm -o ablobfoxbongo.png blobfoxbongo.png 100 blobfoxbongostart.png 100 | 18 | apngasm -o ablobfoxbongo.png blobfoxbongo.png 100 blobfoxbongostart.png 100 |
| 18 | apngasm -o ablobfoxhyper.png blobfoxhyper1.png 2:100 blobfoxhyper2.png 2:100 blobfoxhyper3.png 2:100 | ||
| 19 | rm blobfoxhyper1.png blobfoxhyper2.png blobfoxhyper3.png blobfoxhyperowo.png blobfoxhypercofe.png blobfoxhyperthinking.png | ||
| 20 | cp ./blobfox* ../export_flip/ | 19 | cp ./blobfox* ../export_flip/ |
| 20 | cp ./LICENSE ../export_flip/ | ||
| 21 | 21 | ||
| 22 | 22 | ||
| 23 | FILELIST=`find . -type f -iname '*.png' -exec sh -c 'x=${0#./}; printf "%s:%s|" ${x%.png} $x' {} \;` | 23 | FILELIST=`find . -type f -iname '*.png' -exec sh -c 'x=${0#./}; printf "%s:%s|" ${x%.png} $x' {} \;` |
diff --git a/hyperize.sh b/hyperize.sh index 6f6ad0a..8a8c0ac 100755 --- a/hyperize.sh +++ b/hyperize.sh | |||
| @@ -7,7 +7,7 @@ getShakeOffsets shakeOffsets | |||
| 7 | 7 | ||
| 8 | SOURCEBASE=$1 | 8 | SOURCEBASE=$1 |
| 9 | SOURCESVG=`printf "%s.svg" $SOURCEBASE` | 9 | SOURCESVG=`printf "%s.svg" $SOURCEBASE` |
| 10 | TARGETSVG=`printf "export/a%s.png" $SOURCEBASE` | 10 | TARGETSVG=`printf "export/%s.png" $SOURCEBASE` |
| 11 | 11 | ||
| 12 | 12 | ||
| 13 | mkdir -p export_tmp | 13 | mkdir -p export_tmp |
