Pie Chart
Pie Chart
Uses the arc() function to generate a pie chart from the data stored in an array.
int[] angles = { 30, 10, 45, 35, 60, 38, 75, 67 }; void setup() { size(640, 360); noStroke(); noLoop(); // Run once and stop } void draw() { background(100); pieChart(300, angles); } void pieChart(float diameter, int[] data) { float lastAngle = 0; for (int i = 0; i < data.length; i++) { float gray = map(i, 0, data.length, 0, 255); fill(gray); arc(width/2, height/2, diameter, diameter, lastAngle, lastAngle+radians(data[i])); lastAngle += radians(data[i]); } }
Functions Used
draw()
Called directly after setup(), the draw() function continuously executes the lines of code contained inside its block until the program is stopped or noLoop() is called
Learn More
background()
The background() function sets the color used for the background of the Processing window
Learn More