├── .github ├── dependabot.yml └── workflows │ └── go.yml ├── README.md ├── bbquery └── bbquery.go ├── bench └── bench.go ├── bouncyhexagons └── bouncyhexagons.go ├── buoyancy └── buoyancy.go ├── chains └── chains.go ├── contactgraph └── contactgraph.go ├── convex └── convex.go ├── crane └── crane.go ├── demo.go ├── drawing.go ├── drawopts.go ├── go.mod ├── go.sum ├── joints └── joints.go ├── logosmash └── logosmash.go ├── main.go ├── march ├── fruits │ ├── apple.png │ ├── avacado.png │ ├── kiwi.png │ ├── melon.png │ ├── strawberry.png │ └── watermelon.png └── march.go ├── oneway └── oneway.go ├── planet └── planet.go ├── player └── player.go ├── plink └── plink.go ├── pump └── pump.go ├── pyramidstack └── pyramidstack.go ├── pyramidtopple └── pyramidtopple.go ├── query └── query.go ├── shader.go ├── shatter └── shatter.go ├── slice └── slice.go ├── springies └── springies.go ├── sticky └── sticky.go ├── tank └── tank.go ├── text.go ├── theojansen └── theojansen.go ├── tumble └── tumble.go ├── unicycle └── unicycle.go └── veramobd.ttf_sdf.go /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/README.md -------------------------------------------------------------------------------- /bbquery/bbquery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/bbquery/bbquery.go -------------------------------------------------------------------------------- /bench/bench.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/bench/bench.go -------------------------------------------------------------------------------- /bouncyhexagons/bouncyhexagons.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/bouncyhexagons/bouncyhexagons.go -------------------------------------------------------------------------------- /buoyancy/buoyancy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/buoyancy/buoyancy.go -------------------------------------------------------------------------------- /chains/chains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/chains/chains.go -------------------------------------------------------------------------------- /contactgraph/contactgraph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/contactgraph/contactgraph.go -------------------------------------------------------------------------------- /convex/convex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/convex/convex.go -------------------------------------------------------------------------------- /crane/crane.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/crane/crane.go -------------------------------------------------------------------------------- /demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/demo.go -------------------------------------------------------------------------------- /drawing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/drawing.go -------------------------------------------------------------------------------- /drawopts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/drawopts.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/go.sum -------------------------------------------------------------------------------- /joints/joints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/joints/joints.go -------------------------------------------------------------------------------- /logosmash/logosmash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/logosmash/logosmash.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/main.go -------------------------------------------------------------------------------- /march/fruits/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/march/fruits/apple.png -------------------------------------------------------------------------------- /march/fruits/avacado.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/march/fruits/avacado.png -------------------------------------------------------------------------------- /march/fruits/kiwi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/march/fruits/kiwi.png -------------------------------------------------------------------------------- /march/fruits/melon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/march/fruits/melon.png -------------------------------------------------------------------------------- /march/fruits/strawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/march/fruits/strawberry.png -------------------------------------------------------------------------------- /march/fruits/watermelon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/march/fruits/watermelon.png -------------------------------------------------------------------------------- /march/march.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/march/march.go -------------------------------------------------------------------------------- /oneway/oneway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/oneway/oneway.go -------------------------------------------------------------------------------- /planet/planet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/planet/planet.go -------------------------------------------------------------------------------- /player/player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/player/player.go -------------------------------------------------------------------------------- /plink/plink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/plink/plink.go -------------------------------------------------------------------------------- /pump/pump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/pump/pump.go -------------------------------------------------------------------------------- /pyramidstack/pyramidstack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/pyramidstack/pyramidstack.go -------------------------------------------------------------------------------- /pyramidtopple/pyramidtopple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/pyramidtopple/pyramidtopple.go -------------------------------------------------------------------------------- /query/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/query/query.go -------------------------------------------------------------------------------- /shader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/shader.go -------------------------------------------------------------------------------- /shatter/shatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/shatter/shatter.go -------------------------------------------------------------------------------- /slice/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/slice/slice.go -------------------------------------------------------------------------------- /springies/springies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/springies/springies.go -------------------------------------------------------------------------------- /sticky/sticky.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/sticky/sticky.go -------------------------------------------------------------------------------- /tank/tank.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/tank/tank.go -------------------------------------------------------------------------------- /text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/text.go -------------------------------------------------------------------------------- /theojansen/theojansen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/theojansen/theojansen.go -------------------------------------------------------------------------------- /tumble/tumble.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/tumble/tumble.go -------------------------------------------------------------------------------- /unicycle/unicycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/unicycle/unicycle.go -------------------------------------------------------------------------------- /veramobd.ttf_sdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakecoffman/cp-examples/HEAD/veramobd.ttf_sdf.go --------------------------------------------------------------------------------