MichaelPaulukonis / polychrome.p5

polychrome text p5 version
1 stars 0 forks source link

non-fixed-width font and "rainbow modes" has too much white #3

Open MichaelPaulukonis opened 4 years ago

MichaelPaulukonis commented 4 years ago

The color-rendering seems waaaaaay off from the original.

Original style can be achieved with fixed-width text.

??????

MichaelPaulukonis commented 4 years ago

Related to this:

    if (params.fixedWidth) {
      layer.textAlign(layer.CENTER, layer.CENTER)
    } else {
      layer.textAlign(layer.LEFT, layer.BOTTOM)
    }

IIRC, the "original" ONLY had a single, fixed-width font (no options).

Something about how I implement fixed-width requires different alignment, and thus it reads the x,y differently.