Refactor 2022 #24

sin waves in blue and brown

Refactor 2022 #23

Making the sin waves obvious.

Refactor 2022 #22

Hot palette

Refactor 2022 #21

Diamond shapes

Refactor 2022 #20

Holes

There are two frequencies involved here. Call them x and y. When one is much larger than the other you get horizontal or vertical waves. If they are nearly equal you can see both types of waves.

Refactor 2022 #19

Vertical waves in two colors. Playing with the direction and density.

Refactor 2022 #18

In this variation the colors are not blended. Where they would otherwise overlap, one color is selected, rather than trying to blend them.

For the nerds out there, the bug was one of those kind of bugs. Internally I represent each color channel by a (continuous) floating point value between 0 and 1. The graphics hardware and the bitmap file format uses (discrete) byte values between 0 and 255. So one must multiply or divide by 256, depending on direction, for conversion. At one point I wrote 255 instead of 256. I looked at that number many times and it did not occur to me that it was wrong. The small difference is barely noticeable.

Refactor 2022 #17

Small tweaks to the parameters, and added a black stripe to the vertical palette.

I had put in several parameters to fine tune the results. While the results were close to my intent, the parameters did not work as I expected. Sometimes I liked the unintended results. But mostly it was frustration trying to get better control over the finer details.

Refactor 2022 #16

Here are multiple overlapping horizontal waves with slightly different frequency, amplitude, and phase. (Meaning they do not neatly line up.)

My code had a bug, and I spend way too much time hunting it down. In the process I generated many images trying to isolate the problem.

Actually there were two problems. One was an actual bug, the other probably should be called a prototype. I had an idea of what I wanted, wrote some code that I thought might work, but I was not sure. So I tried it to see what would happen. The result was close to, but not quite what I intended.

Refactor 2022 #15

I spent a little more time on this one. Merging two variations, at two different scales, of the random/not-random algorithm, creating a foreground and background dichotomy.

Refactor 2022 #14

Refactor 2022 #13

Refactor 2022 #12

Refactor 2022 #11

This one, and the next two use the same "random pattern", but with differences in color, contrast, and detail level.

Refactor 2022 #10

Currently my goal is not a finished product. It is just to explore the space. This one uses similar colors as the previous, but lacks the fine details. Again, depending on your mood and how close you look, you might see wall paper, or you might see white noise, or anything in-between. Although, I may be more obsessed with finding patterns than most people.

Anyway, I imagine that someday I will find a way to use these, with much reduced contrast, as background, and then put something to serve as a focal point in the foreground.

Refactor 2022 #9

No words today.

Refactor 2022 #8

At one extreme you have the repeating pattern in wall paper, at the other extreme there is the total randomness of white noise. Both extremes are boring. (Although, back in the day, you could tune your television to a frequency between broadcast stations and enjoy a hypnotic and continuously morphing display of white noise.)

There is a lot of room between those two extremes, here are I few I feel are close to the middle.

Refactor 2022 #7

The marble or wood grain surfaces initially seem uniform. But then under scrutiny one sees a random pattern. I am fascinated by that boundary between random and not-random. I have explored that space this several times in this blog, and will do it again.

Nature abounds with good examples. I am not trying to reproduce nature per se, but rather the abstraction of an interplay between random and not random.

Refactor 2022 #6

I tend to easily get sidetracked. I put together the images in the previous and next few posts to test certain functionality. In this case various anti-alias algorithms. But then I get interested in the images for their own value.

The images could be a polished marble surface. I enjoy looking at the shapes and grain in stone and wood and similar surfaces. The patterns on a similar faux surface hold my interest only until I see where they repeat, then disappointment, as I can never not see the repetition again.

Refactor 2022 #5

So, what about these pictures?

I used simple things like lines to test my anti-alias code changes. When that was looking good I wanted a more complex example like a fractal. A fractal with a lot of details takes a while to generate, so I decided to look for something simpler and quicker. This is the result.

If you put the previous image side by side with this one you will see the difference that anti-aliasing makes. This one uses a simple average on four point on grid within a pixel. In sub-pixel coordinated, the sample points are (0.25, 0.25), (0.25,0.75), (0.75,0.25) and (0.75, 0.75).

← Previous 20 Showing 881-900 of 1412 Next 20 →