22 lines
904 B
Markdown
22 lines
904 B
Markdown
|
# Parallel Color Band Gradient Generator
|
||
|
|
||
|
A program that creates images like this
|
||
|
|
||
|
![](example.png)
|
||
|
|
||
|
Or more precisely, a program that creates stacked color bands forming a stepped gradient at a certain angle. You can see it action by running the [index.html](index.html) file. The actual code is in [script.js](script.js)
|
||
|
|
||
|
## Setup
|
||
|
|
||
|
None needed! The only reason why this project has a `package.json` is to use ESlint.
|
||
|
|
||
|
## Original
|
||
|
|
||
|
This is a rewrite of a program I made in 2021. I didn't like how it worked internally, or for that matter, how it looked externally so I rewrote it with new knowledge and I like it much better now.
|
||
|
|
||
|
## Online
|
||
|
|
||
|
You can try this out on my website: [Line Generator](https://alexanderbass.com/show/2021/lines/)
|
||
|
|
||
|
I wrote about this rewrite on my blog(?): [Project a Week 2 — Rewriting my First Program](https://alexanderbass.com/posts/project-week-2-rewrite-frist-program/)
|