Kinetic Generative Art Tutorial
- 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.



the 💗meaning of this emoji can symbolize emotional softness and emotionally caring communication in online chats and social media. this emoji is commonly used when someone wants to make their reply feel emotionally gentle and emotionally welcoming. it may represent affection, emotional support, emotional appreciation, or emotional positivity depending on the context. people often use this symbol because it visually communicates feelings in a quick and emotionally expressive way. unlike plain text, emojis help messages carry emotional tone more clearly. understanding the 💗meaning of this emoji requires noticing emotional context, emotional timing, and communication patterns between the sender and receiver.
uu88 mình ghé vào thử cho biết vì thấy nhiều người nhắc, chứ ban đầu cũng không kỳ vọng gì. Vào trang cái là thấy giao diện nhìn sạch sẽ, màu sắc dễ chịu, mấy mục chính đặt khá ngay ngắn nên không phải căng mắt tìm. Mình lướt phần giới thiệu thì thấy họ có nhắc thời gian hoạt động tầm 2016–2017, đọc cái nắm được bối cảnh luôn, đỡ phải đoán. Mình không chơi gì nhiều, chủ yếu bấm qua lại xem có rối không, mà cảm giác điều hướng khá trơn, chuyển mục không bị giật. Cái mình thích là họ chia nội dung theo từng khối rõ ràng, tiêu đề to vừa đủ nên nhìn một…
sc88b.it.com hôm bữa mình thấy mọi người nhắc nên tiện tay mở thử trên điện thoại xem sao. Mình không có mò kỹ mấy phần bên trong, chủ yếu nhìn cách họ làm giao diện thôi. Ấn tượng đầu là trang nhìn khá thoáng, nền với chữ dễ chịu nên đọc không bị mỏi mắt. Kéo xuống thấy nội dung chia thành từng khối rõ ràng, kiểu mỗi đoạn có tiêu đề riêng nên mình không bị lạc khi lướt nhanh. Có một đoạn giới thiệu về quá trình hình thành với định hướng phát triển viết ngắn gọn, đọc vài dòng là hiểu ý chứ không lan man. Nhìn chung bố cục gọn, các heading tách bạch nên cuộn…
If you’re into quick, skill-based challenges, Drive Mad is a solid pick. It’s easy to start but hard to master, and that balance makes it a great option for casual but focused gameplay.
LX88 mình lướt thử cho biết thôi, kiểu xem giao diện ra sao chứ không đào sâu. Ấn tượng đầu là trang nhìn gọn, các phần nội dung chia theo khối nên kéo xuống không bị rối mắt, đọc lướt vẫn nắm được ý chính. Mình có để ý họ có đoạn nói về giấy phép Curacao eGaming với mấy chứng chỉ kiểm tra độc lập, đặt trong kiểu box thông tin nên nhìn phát nhận ra ngay, không phải mò. Menu cũng để chỗ dễ thấy, bấm qua lại giữa các mục khá mượt, không có cảm giác bị “nhồi chữ” hay bắt tìm link vòng vèo. Nói chung trải nghiệm xem nhanh ổn, nhất là cách họ đóng…