├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── geometry.go ├── geometry_test.go ├── go.mod ├── go.sum ├── url.go └── url_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulule/picfit-go/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: "1.14" 3 | script: make test -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulule/picfit-go/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulule/picfit-go/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulule/picfit-go/HEAD/README.md -------------------------------------------------------------------------------- /geometry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulule/picfit-go/HEAD/geometry.go -------------------------------------------------------------------------------- /geometry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulule/picfit-go/HEAD/geometry_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulule/picfit-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulule/picfit-go/HEAD/go.sum -------------------------------------------------------------------------------- /url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulule/picfit-go/HEAD/url.go -------------------------------------------------------------------------------- /url_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulule/picfit-go/HEAD/url_test.go --------------------------------------------------------------------------------