Walking Ripples
Sophia Wood explores drawing and shading circles in p5.js using random numbers for radii. She invites readers to modify her code and announces her participation in the Mathober event.
Read original articleSophia Wood's recent post details her exploration of drawing and shading circles using random numbers in p5.js. She began by creating 25 random circles along a horizontal line, assigning each a random radius. The initial setup involved defining the canvas and generating the circles' positions and sizes. Wood then focused on shading the regions formed by these circles, aiming to ensure that adjacent regions did not share the same color. She experimented with counting how many circles a random point fell within, using this count to determine the shading color based on whether the count was even or odd. The post encourages readers to engage with the code and modify it to solve the shading problem. Additionally, Wood mentions her recent migration from WordPress to Ghost and shares her excitement for the upcoming Mathober event, inviting others to participate in creative mathematical projects.
- Sophia Wood is experimenting with drawing and shading circles in p5.js.
- She uses random numbers to determine the radii of the circles.
- The shading technique involves counting how many circles a point is inside to assign colors.
- Wood encourages readers to modify the code for problem-solving.
- She announces her participation in Mathober, inviting others to join in creative projects.
Related
Exploring Randomness in JavaScript
This article compares Math.random() and Crypto.getRandomValues() in JavaScript for generating random values. Despite Crypto being more secure, Math.random() suffices for creating color palettes due to speed and perceived randomness.
p5.js
p5.js is a free JavaScript library for artistic creation, supported by a diverse community. Recent workshops include a coding club for seniors in Korea and global events at various institutions.
An article using The Little Schemer format, what do you think of it?
The article guides integrating p5.js animations into web pages, detailing a node grid experiment, essential functions, code organization, and hints at future discussions on more complex animations.
Hexagon Page Animations
The blog post details the author's evolution of hexagon animations from d3.js to Vue, highlighting improved performance, the adoption of CSS transitions, and solutions for browser compatibility and animation visibility issues.
Hexagon Page Animations
The blog post outlines the transition from d3.js to CSS transitions for hexagon animations, highlighting improved efficiency, reduced updates, and a workaround for Safari bugs to enhance performance across devices.
Related
Exploring Randomness in JavaScript
This article compares Math.random() and Crypto.getRandomValues() in JavaScript for generating random values. Despite Crypto being more secure, Math.random() suffices for creating color palettes due to speed and perceived randomness.
p5.js
p5.js is a free JavaScript library for artistic creation, supported by a diverse community. Recent workshops include a coding club for seniors in Korea and global events at various institutions.
An article using The Little Schemer format, what do you think of it?
The article guides integrating p5.js animations into web pages, detailing a node grid experiment, essential functions, code organization, and hints at future discussions on more complex animations.
Hexagon Page Animations
The blog post details the author's evolution of hexagon animations from d3.js to Vue, highlighting improved performance, the adoption of CSS transitions, and solutions for browser compatibility and animation visibility issues.
Hexagon Page Animations
The blog post outlines the transition from d3.js to CSS transitions for hexagon animations, highlighting improved efficiency, reduced updates, and a workaround for Safari bugs to enhance performance across devices.