1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234 | // Human-AI Collaboration Loop MicroSim
// Shows the iterative process of creating quality MicroSims
let canvasWidth = 400;
let canvasHeight = 500;
let drawWidth, drawHeight;
let margin = 40;
// Step data with positions calculated in setup
let steps = [];
let hoveredStep = -1;
// Colors
let humanColor, aiColor, centerColor, bgColor, textColor;
function setup() {
canvasWidth = min(windowWidth - 40, 500);
canvasHeight = 500;
drawWidth = canvasWidth;
drawHeight = canvasHeight;
createCanvas(canvasWidth, canvasHeight);
// Define colors
humanColor = color(59, 130, 246); // Blue for human steps
aiColor = color(147, 51, 234); // Purple for AI steps
centerColor = color(34, 197, 94); // Green for center
bgColor = color(248, 250, 252); // Light background
textColor = color(30, 41, 59); // Dark text
// Define the 6 steps
let stepData = [
{ name: "SPECIFY", actor: "Human", desc: "Define learning objective and requirements" },
{ name: "GENERATE", actor: "AI", desc: "AI produces first draft based on specs" },
{ name: "EVALUATE", actor: "Human", desc: "Check output against quality criteria" },
{ name: "REFINE", actor: "Human", desc: "Improve specification based on results" },
{ name: "REGENERATE", actor: "AI", desc: "AI creates improved version" },
{ name: "TEST", actor: "Human", desc: "Validate with actual learners" }
];
// Calculate positions in a circle
let centerX = drawWidth / 2;
let centerY = drawHeight / 2 - 20;
let radius = min(drawWidth, drawHeight) / 2 - 80;
for (let i = 0; i < 6; i++) {
let angle = -PI / 2 + (TWO_PI / 6) * i; // Start from top
steps.push({
...stepData[i],
x: centerX + cos(angle) * radius,
y: centerY + sin(angle) * radius,
angle: angle,
isHuman: stepData[i].actor === "Human"
});
}
textAlign(CENTER, CENTER);
textFont('Arial');
}
function draw() {
background(bgColor);
let centerX = drawWidth / 2;
let centerY = drawHeight / 2 - 20;
let radius = min(drawWidth, drawHeight) / 2 - 80;
// Draw title
fill(textColor);
noStroke();
textSize(18);
textStyle(BOLD);
text("Human-AI Collaboration Loop", centerX, 25);
// Draw connecting arrows (circular flow)
drawArrows(centerX, centerY, radius);
// Draw center circle
drawCenter(centerX, centerY);
// Draw step nodes
for (let i = 0; i < steps.length; i++) {
drawStep(steps[i], i === hoveredStep);
}
// Draw legend
drawLegend();
// Draw hover description
if (hoveredStep >= 0) {
drawDescription(steps[hoveredStep]);
}
}
function drawArrows(cx, cy, r) {
let arrowRadius = r * 0.75;
stroke(180);
strokeWeight(2);
noFill();
// Draw curved arrows between steps
for (let i = 0; i < 6; i++) {
let startAngle = -PI / 2 + (TWO_PI / 6) * i + 0.3;
let endAngle = -PI / 2 + (TWO_PI / 6) * (i + 1) - 0.3;
// Draw arc
arc(cx, cy, arrowRadius * 2, arrowRadius * 2, startAngle, endAngle);
// Draw arrowhead
let arrowX = cx + cos(endAngle) * arrowRadius;
let arrowY = cy + sin(endAngle) * arrowRadius;
let arrowAngle = endAngle + PI / 2;
push();
translate(arrowX, arrowY);
rotate(arrowAngle);
fill(180);
noStroke();
triangle(0, -6, -5, 6, 5, 6);
pop();
}
}
function drawCenter(cx, cy) {
// Outer glow
noStroke();
for (let i = 5; i > 0; i--) {
fill(34, 197, 94, 20);
ellipse(cx, cy, 90 + i * 8, 90 + i * 8);
}
// Main circle
fill(centerColor);
ellipse(cx, cy, 90, 90);
// Text
fill(255);
textSize(11);
textStyle(BOLD);
text("Quality", cx, cy - 8);
text("MicroSim", cx, cy + 8);
}
function drawStep(step, isHovered) {
let nodeSize = isHovered ? 65 : 55;
let col = step.isHuman ? humanColor : aiColor;
// Shadow/glow effect
noStroke();
if (isHovered) {
for (let i = 4; i > 0; i--) {
fill(red(col), green(col), blue(col), 30);
ellipse(step.x, step.y, nodeSize + i * 10, nodeSize + i * 10);
}
}
// Main node
fill(col);
stroke(255);
strokeWeight(3);
ellipse(step.x, step.y, nodeSize, nodeSize);
// Step name
fill(255);
noStroke();
textSize(isHovered ? 11 : 10);
textStyle(BOLD);
text(step.name, step.x, step.y - 6);
// Actor label
textSize(9);
textStyle(NORMAL);
text("(" + step.actor + ")", step.x, step.y + 8);
}
function drawLegend() {
let legendY = height - 30;
let legendX = width / 2;
textSize(11);
textStyle(NORMAL);
// Human legend
fill(humanColor);
noStroke();
ellipse(legendX - 80, legendY, 16, 16);
fill(textColor);
textAlign(LEFT, CENTER);
text("Human", legendX - 68, legendY);
// AI legend
fill(aiColor);
ellipse(legendX + 30, legendY, 16, 16);
fill(textColor);
text("AI", legendX + 42, legendY);
textAlign(CENTER, CENTER);
}
function drawDescription(step) {
let boxWidth = min(280, width - 40);
let boxHeight = 50;
let boxX = width / 2;
let boxY = height - 80;
// Background box
fill(255, 250);
stroke(step.isHuman ? humanColor : aiColor);
strokeWeight(2);
rectMode(CENTER);
rect(boxX, boxY, boxWidth, boxHeight, 8);
// Description text
fill(textColor);
noStroke();
textSize(12);
textStyle(NORMAL);
text(step.desc, boxX, boxY);
rectMode(CORNER);
}
function mouseMoved() {
hoveredStep = -1;
for (let i = 0; i < steps.length; i++) {
let d = dist(mouseX, mouseY, steps[i].x, steps[i].y);
if (d < 35) {
hoveredStep = i;
cursor(HAND);
return;
}
}
cursor(ARROW);
}
|