Welcome

This is the first post on the blog. Welcome.

About

This website contains:

  • Cool aesthetics and geometric patterns
  • An audio visualiser with patterns unique to every song
  • An STL to ASCII convereter that lets you see how an STL file looks as ASCII

Why did I make this

I am bored

“I paint a perfect picture strike that a beautiful image” — Bladee

Code

Here is how code renders for whatever reason

function createPattern(points) {
    for (let i = 0; i < points.length; i++) {
        for (let j = i + 1; j < points.length; j++) {
            drawLine(points[i], points[j]);
        }
    }
}