top of page

Kinetic Generative Art Tutorial

  • Writer: Pierre Paslier
    Pierre Paslier
  • Jun 3, 2023
  • 2 min read

Tutorial Intro

Welcome to this tutorial where we're going to explore the mesmerizing world of generative art, inspired by the kinetic sculptures of artists like Reuben Margolin. We'll use p5.js, a powerful JavaScript library that makes coding visual and interactive elements on the web accessible to everyone.


Our goal is to create a digital artwork with a series of rotating pendulums, each varying in speed and size, to simulate the motion seen in kinetic sculptures. The final result is a beautiful, ever-changing pattern that reflects the dynamic essence of kinetic art.


This tutorial is beginner-friendly, so don't worry if you're new to p5.js or programming in general. We'll walk through each line of code step by step, explaining the concepts as we go along.


By the end of this tutorial, not only will you have created a piece of generative art, but you will also have gained a deeper understanding of loops, arrays, and object-oriented programming in p5.js. You'll be equipped with the knowledge to create your own unique generative artworks. So, let's dive in and start coding!




Generative Art Code

let pendulums = [];
let pendulumCount = 40;

function setup() {
  createCanvas(windowWidth, windowHeight);
  for(let i = 0; i < pendulumCount; i++){
    pendulums[i] = new Pendulum(i);
  }
}

function draw() {
	blendMode(NORMAL);
  background(255 );
  translate(width / 2, height / 2);
  for(let i = 0; i < pendulumCount; i++){
    pendulums[i].display();
    pendulums[i].update();
  }
}

class Pendulum {
  constructor(n){
    this.angle = 0;
    this.angleSpeed = 0.01 + n * 0.004; 
    this.radius = 30 + n * 6; 
  }
  
  update() {
    this.angle += this.angleSpeed;
  }
  
  display(){
    let x = this.radius * cos(this.angle);
    let y = this.radius * sin(this.angle);
    stroke(0,100);
    line(0, 0, x, y);
    fill(0);
    ellipse(x, y, 5, 5);
  }
}

That's it! Hope you've enjoyed learning about this particular piece and make sure to check out the other free tutorials on generativehut.com.


924 Comments


Vg Steel
Vg Steel
an hour ago

Thanks for the informative blog. Road safety infrastructure is becoming increasingly important, and choosing the right Guardrail Malaysia supplier ensures long-lasting performance and maximum protection. High-quality galvanized guardrails are ideal for challenging weather conditions. Keep up the great work!

Like

sunny sharma
sunny sharma
5 hours ago

People looking for stock market courses in Udaipur should focus on practical learning concepts like technical analysis, risk management, and trading psychology. A structured learning approach with real-market examples can help beginners understand the market more effectively.


Like

Nirmala Devi
Nirmala Devi
6 hours ago

Excellent article! It clearly explains why Green Cloud Computing is becoming increasingly important as organizations focus on sustainability and operational efficiency. Understanding energy-efficient cloud architecture and resource optimization is valuable for anyone planning a cloud career. Enrolling in Cloud Computing Courses in Chennai is a great way to gain practical exposure to modern cloud technologies and environmentally responsible infrastructure practices. Thanks for sharing such informative content!


Like

dhara234ni
6 hours ago

I am passionate about creating simple and user-friendly digital experiences through UI UX design. I enjoy working on wireframes, prototypes, and improving usability to make products more effective. I am continuously learning new design tools and trends to enhance my skills. Currently, I am developing my professional knowledge by pursuing a UI UX Designer Course in Chennai to grow in this field.


Like

Neira Ruby
Neira Ruby
7 hours ago

Creative projects often show how technical skills and consistent practice can produce impressive results over time. Comparing ccna cost is also an important step for learners planning to develop networking knowledge and practical IT skills. The College of Contract Management provides learning resources covering networking concepts and professional development. Continuous learning helps build confidence and supports long-term career growth in the technology sector.

Like

©2023 by Generative Hut.

bottom of page