
r/processing

What is the mistake?
//cruz de Malta curva
void setup() {
size(600, 600);
}
void draw() {
background(255,0,0);
// Recta vertical
fill(255);
noStroke();
rect(width/2 - width*0.12, 0, width*0.24, height);
//Elipse superior
fill(255,0,0);
noStroke();
ellipse(width/2, -320, 2000, 1150);
//Elipse inferior
fill(255);
noStroke();
ellipse(width/2, 920, 2000, 1150);
//Elipse izquierda
fill(255);
noStroke();
ellipse(-520, height/2, 2000, 1150);
//Elipse derecha
fill(255);
noStroke();
ellipse(1120, height/2, 2000, 1150);
// Recta horizontal
fill(255, 0, 0);
noStroke();
rect(0, height/2 - height*0.12, width, height*0.24);
}
share your experience of learning creative coding outside the classroom
hi hi! I'm a researcher at National Cheng Kung University studying how people learn creative coding outside of academic programs or university environments. If you're interested in sharing your experience with me, send me your email address here.
Participation is voluntary and all responses will be anonymized. I hope to schedule interviews for the next 1-2 weeks. All conversations will be in English and conducted over Google meet. Feel free to reach out with any questions!
VS Code extension that generates UML diagrams in real-time as we type code
I published VS Code extension that instantly visualizes your code as flowcharts and sequence diagrams (without manual UML drafting, no external services) and everything runs locally on machine. The diagrams generate in real-time as we type code, or we can click any function in IDE to visualize existing code.
Supported languages: C, C++, Java, JavaScript, TypeScript, Python
🔗 For installation: https://marketplace.visualstudio.com/items?itemName=bitlab.live-uml
Would love your feedback, Thanks!