├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── README.template.md ├── cmd └── gif │ ├── cat.go │ ├── chop.go │ ├── compose.go │ ├── crop.go │ ├── crowd.go │ ├── decode.go │ ├── duplicate.go │ ├── emoji.go │ ├── encode.go │ ├── erase.go │ ├── fried.go │ ├── hue.go │ ├── input.go │ ├── main.go │ ├── meta.go │ ├── noise.go │ ├── optimize.go │ ├── pad.go │ ├── parallel.go │ ├── profile_disabled.go │ ├── profile_enabled.go │ ├── pulse.go │ ├── rain.go │ ├── resize.go │ ├── roll.go │ ├── scan.go │ ├── shake.go │ ├── text.go │ ├── tint.go │ ├── wobble.go │ ├── woke.go │ └── zoom.go ├── doc ├── compose.gif ├── crowd.gif ├── eggplant.png ├── eggplant_wobble.gif ├── emoji-terminal.gif ├── emoji.gif ├── erase.gif ├── fried.gif ├── galaxy.jpg ├── gunther-small.gif ├── gunther.gif ├── gunther.jpg ├── hue.gif ├── moth.png ├── npc-blur.gif ├── npc.gif ├── pulse.gif ├── rain-scream.gif ├── rain-thonk.gif ├── rain.gif ├── roll.gif ├── shake.gif ├── skeledance.gif ├── terminal.gif ├── terminal.png ├── tint.gif ├── wobble.gif ├── woke.gif ├── yeet.gif ├── yeet.png └── zoom.gif ├── go.mod ├── go.sum ├── pkg ├── box2d │ ├── LICENSE.md │ ├── body.go │ ├── collide_edge.go │ ├── collide_polygon.go │ ├── collision.go │ ├── collision_broad_phase.go │ ├── collision_distance.go │ ├── const.go │ ├── contact.go │ ├── contact_edge_and_polygon.go │ ├── contact_manager.go │ ├── contact_polygon.go │ ├── contact_solver.go │ ├── dynamic_tree.go │ ├── fixture.go │ ├── growable_stack.go │ ├── island.go │ ├── math.go │ ├── shape.go │ ├── shape_edge.go │ ├── shape_polygon.go │ ├── time_of_impact.go │ ├── time_step.go │ ├── world.go │ └── world_callbacks.go ├── ggtext │ ├── LICENSE.md │ └── drawer.go ├── gifbounce │ ├── build.go │ ├── image.go │ ├── params.go │ ├── render │ │ ├── render.go │ │ └── wrap.go │ └── world.go ├── gifcmd │ ├── enum.go │ ├── float.go │ └── json.go ├── gifmath │ └── math.go ├── gifmeta │ ├── append.go │ ├── extension.go │ ├── global.go │ └── read.go ├── gifstatic │ ├── emoji_map.go │ ├── emoji_map.go-LICENSE │ ├── emoji_twitter.go │ ├── emoji_twitter_list.go │ ├── lensflare.go │ ├── roboto.go │ └── roboto.go-LICENSE ├── imaging │ ├── LICENSE │ ├── adjust.go │ ├── convolution.go │ ├── doc.go │ ├── effects.go │ ├── histogram.go │ ├── hsl.go │ ├── io.go │ ├── resize.go │ ├── scanner.go │ ├── tools.go │ ├── transform.go │ └── utils.go └── rendersvg │ ├── geom │ └── geom.go │ ├── parse │ ├── color.go │ ├── image.go │ ├── path.go │ ├── rectangle.go │ └── scan.go │ ├── render │ ├── image.go │ ├── options.go │ └── path.go │ └── svg │ ├── image.go │ ├── path_command.go │ └── state.go └── vendor ├── github.com ├── ericpauley │ └── go-quantize │ │ ├── LICENSE │ │ └── quantize │ │ ├── bucket.go │ │ ├── mediancut.go │ │ ├── test_image.jpg │ │ └── test_image2.gif ├── fogleman │ └── gg │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bezier.go │ │ ├── context.go │ │ ├── gradient.go │ │ ├── matrix.go │ │ ├── path.go │ │ ├── pattern.go │ │ ├── point.go │ │ ├── util.go │ │ └── wrap.go ├── gobwas │ └── glob │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── bench.sh │ │ ├── compiler │ │ └── compiler.go │ │ ├── glob.go │ │ ├── match │ │ ├── any.go │ │ ├── any_of.go │ │ ├── btree.go │ │ ├── contains.go │ │ ├── every_of.go │ │ ├── list.go │ │ ├── match.go │ │ ├── max.go │ │ ├── min.go │ │ ├── nothing.go │ │ ├── prefix.go │ │ ├── prefix_any.go │ │ ├── prefix_suffix.go │ │ ├── range.go │ │ ├── row.go │ │ ├── segments.go │ │ ├── single.go │ │ ├── suffix.go │ │ ├── suffix_any.go │ │ ├── super.go │ │ └── text.go │ │ ├── readme.md │ │ ├── syntax │ │ ├── ast │ │ │ ├── ast.go │ │ │ └── parser.go │ │ ├── lexer │ │ │ ├── lexer.go │ │ │ └── token.go │ │ └── syntax.go │ │ └── util │ │ ├── runes │ │ └── runes.go │ │ └── strings │ │ └── strings.go ├── golang │ └── freetype │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── raster │ │ ├── geom.go │ │ ├── paint.go │ │ ├── raster.go │ │ └── stroke.go │ │ └── truetype │ │ ├── face.go │ │ ├── glyph.go │ │ ├── hint.go │ │ ├── opcodes.go │ │ └── truetype.go ├── jawher │ └── mow.cli │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── README.md.template │ │ ├── args.go │ │ ├── cli.go │ │ ├── commands.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── internal │ │ ├── container │ │ │ └── container.go │ │ ├── flow │ │ │ └── flow.go │ │ ├── fsm │ │ │ └── fsm.go │ │ ├── lexer │ │ │ └── lexer.go │ │ ├── matcher │ │ │ ├── arg.go │ │ │ ├── context.go │ │ │ ├── matchers.go │ │ │ ├── option.go │ │ │ ├── options.go │ │ │ ├── optsEnd.go │ │ │ ├── shortcut.go │ │ │ └── strings.go │ │ ├── parser │ │ │ └── parser.go │ │ └── values │ │ │ ├── utils.go │ │ │ └── values.go │ │ └── options.go ├── mitchellh │ └── colorstring │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── colorstring.go ├── schollz │ └── progressbar │ │ └── v2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── progressbar.go └── sgreben │ └── piecewiselinear │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── piecewiselinear.go │ └── span.go ├── golang.org └── x │ ├── image │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── bmp │ │ ├── reader.go │ │ └── writer.go │ ├── draw │ │ ├── draw.go │ │ ├── go1_8.go │ │ ├── go1_9.go │ │ ├── impl.go │ │ └── scale.go │ ├── font │ │ ├── basicfont │ │ │ ├── basicfont.go │ │ │ └── data.go │ │ └── font.go │ ├── math │ │ ├── f64 │ │ │ └── f64.go │ │ └── fixed │ │ │ └── fixed.go │ └── tiff │ │ ├── buffer.go │ │ ├── compress.go │ │ ├── consts.go │ │ ├── lzw │ │ └── reader.go │ │ ├── reader.go │ │ └── writer.go │ └── text │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ └── unicode │ └── runenames │ ├── bits.go │ ├── runenames.go │ └── tables.go └── modules.txt /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/README.md -------------------------------------------------------------------------------- /README.template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/README.template.md -------------------------------------------------------------------------------- /cmd/gif/cat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/cat.go -------------------------------------------------------------------------------- /cmd/gif/chop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/chop.go -------------------------------------------------------------------------------- /cmd/gif/compose.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/compose.go -------------------------------------------------------------------------------- /cmd/gif/crop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/crop.go -------------------------------------------------------------------------------- /cmd/gif/crowd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/crowd.go -------------------------------------------------------------------------------- /cmd/gif/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/decode.go -------------------------------------------------------------------------------- /cmd/gif/duplicate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/duplicate.go -------------------------------------------------------------------------------- /cmd/gif/emoji.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/emoji.go -------------------------------------------------------------------------------- /cmd/gif/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/encode.go -------------------------------------------------------------------------------- /cmd/gif/erase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/erase.go -------------------------------------------------------------------------------- /cmd/gif/fried.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/fried.go -------------------------------------------------------------------------------- /cmd/gif/hue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/hue.go -------------------------------------------------------------------------------- /cmd/gif/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/input.go -------------------------------------------------------------------------------- /cmd/gif/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/main.go -------------------------------------------------------------------------------- /cmd/gif/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/meta.go -------------------------------------------------------------------------------- /cmd/gif/noise.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/noise.go -------------------------------------------------------------------------------- /cmd/gif/optimize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/optimize.go -------------------------------------------------------------------------------- /cmd/gif/pad.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/pad.go -------------------------------------------------------------------------------- /cmd/gif/parallel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/parallel.go -------------------------------------------------------------------------------- /cmd/gif/profile_disabled.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/profile_disabled.go -------------------------------------------------------------------------------- /cmd/gif/profile_enabled.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/profile_enabled.go -------------------------------------------------------------------------------- /cmd/gif/pulse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/pulse.go -------------------------------------------------------------------------------- /cmd/gif/rain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/rain.go -------------------------------------------------------------------------------- /cmd/gif/resize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/resize.go -------------------------------------------------------------------------------- /cmd/gif/roll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/roll.go -------------------------------------------------------------------------------- /cmd/gif/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/scan.go -------------------------------------------------------------------------------- /cmd/gif/shake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/shake.go -------------------------------------------------------------------------------- /cmd/gif/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/text.go -------------------------------------------------------------------------------- /cmd/gif/tint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/tint.go -------------------------------------------------------------------------------- /cmd/gif/wobble.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/wobble.go -------------------------------------------------------------------------------- /cmd/gif/woke.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/woke.go -------------------------------------------------------------------------------- /cmd/gif/zoom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/cmd/gif/zoom.go -------------------------------------------------------------------------------- /doc/compose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/compose.gif -------------------------------------------------------------------------------- /doc/crowd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/crowd.gif -------------------------------------------------------------------------------- /doc/eggplant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/eggplant.png -------------------------------------------------------------------------------- /doc/eggplant_wobble.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/eggplant_wobble.gif -------------------------------------------------------------------------------- /doc/emoji-terminal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/emoji-terminal.gif -------------------------------------------------------------------------------- /doc/emoji.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/emoji.gif -------------------------------------------------------------------------------- /doc/erase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/erase.gif -------------------------------------------------------------------------------- /doc/fried.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/fried.gif -------------------------------------------------------------------------------- /doc/galaxy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/galaxy.jpg -------------------------------------------------------------------------------- /doc/gunther-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/gunther-small.gif -------------------------------------------------------------------------------- /doc/gunther.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/gunther.gif -------------------------------------------------------------------------------- /doc/gunther.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/gunther.jpg -------------------------------------------------------------------------------- /doc/hue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/hue.gif -------------------------------------------------------------------------------- /doc/moth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/moth.png -------------------------------------------------------------------------------- /doc/npc-blur.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/npc-blur.gif -------------------------------------------------------------------------------- /doc/npc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/npc.gif -------------------------------------------------------------------------------- /doc/pulse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/pulse.gif -------------------------------------------------------------------------------- /doc/rain-scream.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/rain-scream.gif -------------------------------------------------------------------------------- /doc/rain-thonk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/rain-thonk.gif -------------------------------------------------------------------------------- /doc/rain.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/rain.gif -------------------------------------------------------------------------------- /doc/roll.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/roll.gif -------------------------------------------------------------------------------- /doc/shake.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/shake.gif -------------------------------------------------------------------------------- /doc/skeledance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/skeledance.gif -------------------------------------------------------------------------------- /doc/terminal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/terminal.gif -------------------------------------------------------------------------------- /doc/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/terminal.png -------------------------------------------------------------------------------- /doc/tint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/tint.gif -------------------------------------------------------------------------------- /doc/wobble.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/wobble.gif -------------------------------------------------------------------------------- /doc/woke.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/woke.gif -------------------------------------------------------------------------------- /doc/yeet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/yeet.gif -------------------------------------------------------------------------------- /doc/yeet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/yeet.png -------------------------------------------------------------------------------- /doc/zoom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/doc/zoom.gif -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/go.sum -------------------------------------------------------------------------------- /pkg/box2d/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/LICENSE.md -------------------------------------------------------------------------------- /pkg/box2d/body.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/body.go -------------------------------------------------------------------------------- /pkg/box2d/collide_edge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/collide_edge.go -------------------------------------------------------------------------------- /pkg/box2d/collide_polygon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/collide_polygon.go -------------------------------------------------------------------------------- /pkg/box2d/collision.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/collision.go -------------------------------------------------------------------------------- /pkg/box2d/collision_broad_phase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/collision_broad_phase.go -------------------------------------------------------------------------------- /pkg/box2d/collision_distance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/collision_distance.go -------------------------------------------------------------------------------- /pkg/box2d/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/const.go -------------------------------------------------------------------------------- /pkg/box2d/contact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/contact.go -------------------------------------------------------------------------------- /pkg/box2d/contact_edge_and_polygon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/contact_edge_and_polygon.go -------------------------------------------------------------------------------- /pkg/box2d/contact_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/contact_manager.go -------------------------------------------------------------------------------- /pkg/box2d/contact_polygon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/contact_polygon.go -------------------------------------------------------------------------------- /pkg/box2d/contact_solver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/contact_solver.go -------------------------------------------------------------------------------- /pkg/box2d/dynamic_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/dynamic_tree.go -------------------------------------------------------------------------------- /pkg/box2d/fixture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/fixture.go -------------------------------------------------------------------------------- /pkg/box2d/growable_stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/growable_stack.go -------------------------------------------------------------------------------- /pkg/box2d/island.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/island.go -------------------------------------------------------------------------------- /pkg/box2d/math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/math.go -------------------------------------------------------------------------------- /pkg/box2d/shape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/shape.go -------------------------------------------------------------------------------- /pkg/box2d/shape_edge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/shape_edge.go -------------------------------------------------------------------------------- /pkg/box2d/shape_polygon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/shape_polygon.go -------------------------------------------------------------------------------- /pkg/box2d/time_of_impact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/time_of_impact.go -------------------------------------------------------------------------------- /pkg/box2d/time_step.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/time_step.go -------------------------------------------------------------------------------- /pkg/box2d/world.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/world.go -------------------------------------------------------------------------------- /pkg/box2d/world_callbacks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/box2d/world_callbacks.go -------------------------------------------------------------------------------- /pkg/ggtext/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/ggtext/LICENSE.md -------------------------------------------------------------------------------- /pkg/ggtext/drawer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/ggtext/drawer.go -------------------------------------------------------------------------------- /pkg/gifbounce/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/gifbounce/build.go -------------------------------------------------------------------------------- /pkg/gifbounce/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/gifbounce/image.go -------------------------------------------------------------------------------- /pkg/gifbounce/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/gifbounce/params.go -------------------------------------------------------------------------------- /pkg/gifbounce/render/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/gifbounce/render/render.go -------------------------------------------------------------------------------- /pkg/gifbounce/render/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/gifbounce/render/wrap.go -------------------------------------------------------------------------------- /pkg/gifbounce/world.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/gifbounce/world.go -------------------------------------------------------------------------------- /pkg/gifcmd/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/gifcmd/enum.go -------------------------------------------------------------------------------- /pkg/gifcmd/float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/gifcmd/float.go -------------------------------------------------------------------------------- /pkg/gifcmd/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/gifcmd/json.go -------------------------------------------------------------------------------- /pkg/gifmath/math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/gifmath/math.go -------------------------------------------------------------------------------- /pkg/gifmeta/append.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/gifmeta/append.go -------------------------------------------------------------------------------- /pkg/gifmeta/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/gifmeta/extension.go -------------------------------------------------------------------------------- /pkg/gifmeta/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/gifmeta/global.go -------------------------------------------------------------------------------- /pkg/gifmeta/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/gifmeta/read.go -------------------------------------------------------------------------------- /pkg/gifstatic/emoji_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/gifstatic/emoji_map.go -------------------------------------------------------------------------------- /pkg/gifstatic/emoji_map.go-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/gifstatic/emoji_map.go-LICENSE -------------------------------------------------------------------------------- /pkg/gifstatic/emoji_twitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/gifstatic/emoji_twitter.go -------------------------------------------------------------------------------- /pkg/gifstatic/emoji_twitter_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/gifstatic/emoji_twitter_list.go -------------------------------------------------------------------------------- /pkg/gifstatic/lensflare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/gifstatic/lensflare.go -------------------------------------------------------------------------------- /pkg/gifstatic/roboto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/gifstatic/roboto.go -------------------------------------------------------------------------------- /pkg/gifstatic/roboto.go-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/gifstatic/roboto.go-LICENSE -------------------------------------------------------------------------------- /pkg/imaging/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/imaging/LICENSE -------------------------------------------------------------------------------- /pkg/imaging/adjust.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/imaging/adjust.go -------------------------------------------------------------------------------- /pkg/imaging/convolution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/imaging/convolution.go -------------------------------------------------------------------------------- /pkg/imaging/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/imaging/doc.go -------------------------------------------------------------------------------- /pkg/imaging/effects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/imaging/effects.go -------------------------------------------------------------------------------- /pkg/imaging/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/imaging/histogram.go -------------------------------------------------------------------------------- /pkg/imaging/hsl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/imaging/hsl.go -------------------------------------------------------------------------------- /pkg/imaging/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/imaging/io.go -------------------------------------------------------------------------------- /pkg/imaging/resize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/imaging/resize.go -------------------------------------------------------------------------------- /pkg/imaging/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/imaging/scanner.go -------------------------------------------------------------------------------- /pkg/imaging/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/imaging/tools.go -------------------------------------------------------------------------------- /pkg/imaging/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/imaging/transform.go -------------------------------------------------------------------------------- /pkg/imaging/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/imaging/utils.go -------------------------------------------------------------------------------- /pkg/rendersvg/geom/geom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/rendersvg/geom/geom.go -------------------------------------------------------------------------------- /pkg/rendersvg/parse/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/rendersvg/parse/color.go -------------------------------------------------------------------------------- /pkg/rendersvg/parse/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/rendersvg/parse/image.go -------------------------------------------------------------------------------- /pkg/rendersvg/parse/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/rendersvg/parse/path.go -------------------------------------------------------------------------------- /pkg/rendersvg/parse/rectangle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/rendersvg/parse/rectangle.go -------------------------------------------------------------------------------- /pkg/rendersvg/parse/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/rendersvg/parse/scan.go -------------------------------------------------------------------------------- /pkg/rendersvg/render/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/rendersvg/render/image.go -------------------------------------------------------------------------------- /pkg/rendersvg/render/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/rendersvg/render/options.go -------------------------------------------------------------------------------- /pkg/rendersvg/render/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/rendersvg/render/path.go -------------------------------------------------------------------------------- /pkg/rendersvg/svg/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/rendersvg/svg/image.go -------------------------------------------------------------------------------- /pkg/rendersvg/svg/path_command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/rendersvg/svg/path_command.go -------------------------------------------------------------------------------- /pkg/rendersvg/svg/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/pkg/rendersvg/svg/state.go -------------------------------------------------------------------------------- /vendor/github.com/ericpauley/go-quantize/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/ericpauley/go-quantize/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ericpauley/go-quantize/quantize/bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/ericpauley/go-quantize/quantize/bucket.go -------------------------------------------------------------------------------- /vendor/github.com/ericpauley/go-quantize/quantize/mediancut.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/ericpauley/go-quantize/quantize/mediancut.go -------------------------------------------------------------------------------- /vendor/github.com/ericpauley/go-quantize/quantize/test_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/ericpauley/go-quantize/quantize/test_image.jpg -------------------------------------------------------------------------------- /vendor/github.com/ericpauley/go-quantize/quantize/test_image2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/ericpauley/go-quantize/quantize/test_image2.gif -------------------------------------------------------------------------------- /vendor/github.com/fogleman/gg/.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/fogleman/gg/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/fogleman/gg/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/fogleman/gg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/fogleman/gg/README.md -------------------------------------------------------------------------------- /vendor/github.com/fogleman/gg/bezier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/fogleman/gg/bezier.go -------------------------------------------------------------------------------- /vendor/github.com/fogleman/gg/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/fogleman/gg/context.go -------------------------------------------------------------------------------- /vendor/github.com/fogleman/gg/gradient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/fogleman/gg/gradient.go -------------------------------------------------------------------------------- /vendor/github.com/fogleman/gg/matrix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/fogleman/gg/matrix.go -------------------------------------------------------------------------------- /vendor/github.com/fogleman/gg/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/fogleman/gg/path.go -------------------------------------------------------------------------------- /vendor/github.com/fogleman/gg/pattern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/fogleman/gg/pattern.go -------------------------------------------------------------------------------- /vendor/github.com/fogleman/gg/point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/fogleman/gg/point.go -------------------------------------------------------------------------------- /vendor/github.com/fogleman/gg/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/fogleman/gg/util.go -------------------------------------------------------------------------------- /vendor/github.com/fogleman/gg/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/fogleman/gg/wrap.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/bench.sh -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/compiler/compiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/compiler/compiler.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/glob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/glob.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/match/any.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/any_of.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/match/any_of.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/btree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/match/btree.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/contains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/match/contains.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/every_of.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/match/every_of.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/match/list.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/match/match.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/max.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/match/max.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/min.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/match/min.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/nothing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/match/nothing.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/prefix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/match/prefix.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/prefix_any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/match/prefix_any.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/prefix_suffix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/match/prefix_suffix.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/match/range.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/row.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/match/row.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/segments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/match/segments.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/single.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/match/single.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/suffix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/match/suffix.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/suffix_any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/match/suffix_any.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/super.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/match/super.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/match/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/match/text.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/readme.md -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/syntax/ast/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/syntax/ast/ast.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/syntax/ast/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/syntax/ast/parser.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/syntax/lexer/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/syntax/lexer/lexer.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/syntax/lexer/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/syntax/lexer/token.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/syntax/syntax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/syntax/syntax.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/util/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/util/runes/runes.go -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/util/strings/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/gobwas/glob/util/strings/strings.go -------------------------------------------------------------------------------- /vendor/github.com/golang/freetype/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/golang/freetype/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/freetype/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/golang/freetype/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/golang/freetype/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/golang/freetype/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/freetype/raster/geom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/golang/freetype/raster/geom.go -------------------------------------------------------------------------------- /vendor/github.com/golang/freetype/raster/paint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/golang/freetype/raster/paint.go -------------------------------------------------------------------------------- /vendor/github.com/golang/freetype/raster/raster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/golang/freetype/raster/raster.go -------------------------------------------------------------------------------- /vendor/github.com/golang/freetype/raster/stroke.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/golang/freetype/raster/stroke.go -------------------------------------------------------------------------------- /vendor/github.com/golang/freetype/truetype/face.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/golang/freetype/truetype/face.go -------------------------------------------------------------------------------- /vendor/github.com/golang/freetype/truetype/glyph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/golang/freetype/truetype/glyph.go -------------------------------------------------------------------------------- /vendor/github.com/golang/freetype/truetype/hint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/golang/freetype/truetype/hint.go -------------------------------------------------------------------------------- /vendor/github.com/golang/freetype/truetype/opcodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/golang/freetype/truetype/opcodes.go -------------------------------------------------------------------------------- /vendor/github.com/golang/freetype/truetype/truetype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/golang/freetype/truetype/truetype.go -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/Makefile -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/README.md -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/README.md.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/README.md.template -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/args.go -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/cli.go -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/commands.go -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/errors.go -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/internal/container/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/internal/container/container.go -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/internal/flow/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/internal/flow/flow.go -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/internal/fsm/fsm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/internal/fsm/fsm.go -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/internal/lexer/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/internal/lexer/lexer.go -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/internal/matcher/arg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/internal/matcher/arg.go -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/internal/matcher/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/internal/matcher/context.go -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/internal/matcher/matchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/internal/matcher/matchers.go -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/internal/matcher/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/internal/matcher/option.go -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/internal/matcher/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/internal/matcher/options.go -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/internal/matcher/optsEnd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/internal/matcher/optsEnd.go -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/internal/matcher/shortcut.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/internal/matcher/shortcut.go -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/internal/matcher/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/internal/matcher/strings.go -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/internal/parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/internal/parser/parser.go -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/internal/values/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/internal/values/utils.go -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/internal/values/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/internal/values/values.go -------------------------------------------------------------------------------- /vendor/github.com/jawher/mow.cli/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/jawher/mow.cli/options.go -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/colorstring/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/mitchellh/colorstring/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/colorstring/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/mitchellh/colorstring/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/colorstring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/mitchellh/colorstring/README.md -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/colorstring/colorstring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/mitchellh/colorstring/colorstring.go -------------------------------------------------------------------------------- /vendor/github.com/schollz/progressbar/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/schollz/progressbar/v2/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/schollz/progressbar/v2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - tip -------------------------------------------------------------------------------- /vendor/github.com/schollz/progressbar/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/schollz/progressbar/v2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/schollz/progressbar/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/schollz/progressbar/v2/README.md -------------------------------------------------------------------------------- /vendor/github.com/schollz/progressbar/v2/progressbar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/schollz/progressbar/v2/progressbar.go -------------------------------------------------------------------------------- /vendor/github.com/sgreben/piecewiselinear/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - "1.11" 4 | script: go test -cover . 5 | -------------------------------------------------------------------------------- /vendor/github.com/sgreben/piecewiselinear/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/sgreben/piecewiselinear/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sgreben/piecewiselinear/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/sgreben/piecewiselinear/README.md -------------------------------------------------------------------------------- /vendor/github.com/sgreben/piecewiselinear/piecewiselinear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/sgreben/piecewiselinear/piecewiselinear.go -------------------------------------------------------------------------------- /vendor/github.com/sgreben/piecewiselinear/span.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/github.com/sgreben/piecewiselinear/span.go -------------------------------------------------------------------------------- /vendor/golang.org/x/image/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/image/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/image/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/image/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/image/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/image/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/image/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/image/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/image/bmp/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/image/bmp/reader.go -------------------------------------------------------------------------------- /vendor/golang.org/x/image/bmp/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/image/bmp/writer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/image/draw/draw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/image/draw/draw.go -------------------------------------------------------------------------------- /vendor/golang.org/x/image/draw/go1_8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/image/draw/go1_8.go -------------------------------------------------------------------------------- /vendor/golang.org/x/image/draw/go1_9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/image/draw/go1_9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/image/draw/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/image/draw/impl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/image/draw/scale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/image/draw/scale.go -------------------------------------------------------------------------------- /vendor/golang.org/x/image/font/basicfont/basicfont.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/image/font/basicfont/basicfont.go -------------------------------------------------------------------------------- /vendor/golang.org/x/image/font/basicfont/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/image/font/basicfont/data.go -------------------------------------------------------------------------------- /vendor/golang.org/x/image/font/font.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/image/font/font.go -------------------------------------------------------------------------------- /vendor/golang.org/x/image/math/f64/f64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/image/math/f64/f64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/image/math/fixed/fixed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/image/math/fixed/fixed.go -------------------------------------------------------------------------------- /vendor/golang.org/x/image/tiff/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/image/tiff/buffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/image/tiff/compress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/image/tiff/compress.go -------------------------------------------------------------------------------- /vendor/golang.org/x/image/tiff/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/image/tiff/consts.go -------------------------------------------------------------------------------- /vendor/golang.org/x/image/tiff/lzw/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/image/tiff/lzw/reader.go -------------------------------------------------------------------------------- /vendor/golang.org/x/image/tiff/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/image/tiff/reader.go -------------------------------------------------------------------------------- /vendor/golang.org/x/image/tiff/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/image/tiff/writer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/runenames/bits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/text/unicode/runenames/bits.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/runenames/runenames.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/text/unicode/runenames/runenames.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/runenames/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/golang.org/x/text/unicode/runenames/tables.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgreben/yeetgif/HEAD/vendor/modules.txt --------------------------------------------------------------------------------