https://github.com/davidhampgonsalves/plotted-pixels
CLI for turning pixel art into vector based pen plotter ready images
https://github.com/davidhampgonsalves/plotted-pixels
featured golang penplotter
Last synced: 3 months ago
JSON representation
CLI for turning pixel art into vector based pen plotter ready images
- Host: GitHub
- URL: https://github.com/davidhampgonsalves/plotted-pixels
- Owner: davidhampgonsalves
- License: mit
- Created: 2020-06-22T20:02:07.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-10-25T14:20:06.000Z (almost 3 years ago)
- Last Synced: 2024-06-21T02:05:37.347Z (over 1 year ago)
- Topics: featured, golang, penplotter
- Language: Go
- Homepage:
- Size: 746 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
Plotted Pixels is a small cli written in go-lang for turning pixel art into vector based images that are easily plottable. Its aim is to maximize line lengths to avoid pen up / down motions.
## Usage
Clone repo and then `go run main.go file.png`## About
This was a small afternoon project to play around with some ideas I had to avoid the full complexity of the traveling sales man problem (which this task falls into if you want to generate optimal paths) and see what kind of results I could achieve with some fast snake like approaches.
I continued working on general vector fills for pen plotters in my subsiquent (https://github.com/davidhampgonsalves/restaline)[Restaline] project.