xxxxxxxxxx
let data;
function preload() {
data = loadJSON("pose.json");
}
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
background(100);
for (let part of data.bodypoints) {
circle(part.x, part.y, 10);
}
}