Skip to main content
  1. Blog/

Latest image

Author
Lance Barker
Exploring my own creative expression and building things that help people.

The latest image from my generative art series was a nice surprise.

It started as this:

for (i in 1:500)

{

x = x*((0.98)^i)*cos(i)

y = y*((0.98)^i)*sin(i)

}

which is simple R code that generates 500 x, y points that spiral. That code gave me this:

Next, I replaced the dots with line segments. This looks much different.

Finally, I ran an image processing script over it. The short version is that the script connects dots with a series of lines. That script spit this image out, which I love:

There are a lot of possible permutations of this I want to explore later. Like:

Related

The Beauty In Numbers, 2a: Circular Matrices

I consider myself a fledgling geometer. That is, someone who is inspired by the beauty in numbers and wants to make stuff in that realm. Geometric images and like that. Some call it Sacred Geometry. I prefer to call it Inspired Geometry. So, I’m an Inspired Geometer? Okay. I can go with that.

The Beauty In Numbers, 1a: Plotting a circle.

Let’s use math to draw pictures, shall we? There is a wonderful world out there of representing patterns in nature, especially flowers, in mathematical terms. Ever gazed into a sunflower? I hope so. I’m learning and exploring as I go along here, so I’ll start with simple circle plots and move on from there. But where to start? How about Pythagorus?