Creative Challenge
"A clock made of melting candy canes."
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<pattern id="caneStripes" patternUnits="userSpaceOnUse" width="8" height="8" patternTransform="rotate(45)">
<rect width="4" height="8" fill="#E63946"/>
<rect x="4" width="4" height="8" fill="#FFFFFF"/>
</pattern>
<linearGradient id="bgGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#ffe6e6"/>
<stop offset="100%" stop-color="#ffdede"/>
</linearGradient>
<radialGradient id="faceGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FFFFFF"/>
<stop offset="100%" stop-color="#F1F1F1"/>
</radialGradient>
<filter id="shadow" x="-50%" y="-50%" width="200%" height="200%">
<feDropShadow dx="0" dy="2" stdDeviation="3" flood-color="#000000" flood-opacity="0.3"/>
</filter>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#bgGrad)"/>
<!-- Clock Face -->
<circle cx="150" cy="150" r="110" fill="url(#faceGrad)"/>
<!-- Candy Cane Frame -->
<circle cx="150" cy="150" r="130" fill="none" stroke="url(#caneStripes)" stroke-width="20" stroke-linecap="round"/>
<!-- Melting Drips -->
<g filter="url(#shadow)">
<path d="M90,280 c10,-20 30,-20 40,0 v20 h-40 z" fill="url(#caneStripes)"/>
<path d="M140,280 c8,-15 24,-15 32,0 v15 h-32 z" fill="url(#caneStripes)"/>
<path d="M190,280 c12,-30 36,-30 48,0 v25 h-48 z" fill="url(#caneStripes)"/>
</g>
<!-- Hour Markers -->
<rect x="148" y="40" width="4" height="16" rx="2" fill="url(#caneStripes)"/>
<rect x="148" y="40" width="4" height="16" rx="2" fill="url(#caneStripes)" transform="rotate(90,150,150)"/>
<rect x="148" y="40" width="4" height="16" rx="2" fill="url(#caneStripes)" transform="rotate(180,150,150)"/>
<rect x="148" y="40" width="4" height="16" rx="2" fill="url(#caneStripes)" transform="rotate(270,150,150)"/>
<!-- Clock Hands -->
<rect x="146" y="90" width="8" height="60" rx="4" fill="url(#caneStripes)" transform="rotate(320,150,150)"/>
<rect x="148" y="50" width="4" height="100" rx="2" fill="url(#caneStripes)" transform="rotate(60,150,150)"/>
<!-- Center Pin -->
<circle cx="150" cy="150" r="6" fill="#FFFFFF" stroke="#E63946" stroke-width="2"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<defs>
<linearGradient id="bgGradient" x1="0" y1="0" x2="300" y2="300" gradientTransform="rotate(45)">
<stop offset="0%" stop-color="#ffe0f0"/>
<stop offset="100%" stop-color="#f0e0ff"/>
</linearGradient>
<radialGradient id="candyGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ff6f61"/>
<stop offset="100%" stop-color="#d84315"/>
</radialGradient>
<linearGradient id="clockFaceGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#ffffcc"/>
<stop offset="100%" stop-color="#ffe680"/>
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#bgGradient)" />
<!-- Melting Candy Cane Clocks -->
<!-- Left Candy Cane -->
<g id="leftCane" transform="translate(80,120)">
<!-- Cane stripe pattern -->
<g stroke="#ffffff" stroke-width="4" fill="none" stroke-linecap="round" stroke-dasharray="10,10">
<path d="M0,0 Q10,20 0,40 Q-10,60 0,80" />
</g>
<!-- Main cane shape with melting effect -->
<path d="M0,0
Q-10,10 -12,30
Q-14,50 -10,70
Q-12,90 -8,110
Q-9,130 -10,150
Q-8,170 -6,190
Q-4,210 0,220
Q4,210 6,190
Q8,170 10,150
Q8,130 10,110
Q12,90 10,70
Q14,50 12,30
Q10,10 0,0
Z" fill="url(#candyGradient)" stroke="#994422" stroke-width="2"/>
<!-- Melting drips -->
<path d="M0,220
Q-8,230 -10,250
Q-12,270 -8,290
Q-4,310 0,320
Q4,310 8,290
Q12,270 10,250
Q8,230 0,220
Z" fill="#e0cccc"/>
</g>
<!-- Right Candy Cane -->
<g id="rightCane" transform="translate(220, 120)">
<!-- Cane stripe pattern -->
<g stroke="#ffffff" stroke-width="4" fill="none" stroke-linecap="round" stroke-dasharray="10,10" transform="scale(-1,1)">
<path d="M0,0 Q10,20 0,40 Q-10,60 0,80" />
</g>
<!-- Main cane shape with melting effect -->
<path d="M0,0
Q-10,10 -12,30
Q-14,50 -10,70
Q-12,90 -8,110
Q-9,130 -10,150
Q-8,170 -6,190
Q-4,210 0,220
Q4,210 6,190
Q8,170 10,150
Q8,130 10,110
Q12,90 10,70
Q14,50 12,30
Q10,10 0,0
Z" fill="url(#candyGradient)" stroke="#994422" stroke-width="2"/>
<!-- Melting drips -->
<path d="M0,220
Q-8,230 -10,250
Q-12,270 -8,290
Q-4,310 0,320
Q4,310 8,290
Q12,270 10,250
Q8,230 0,220
Z" fill="#e0cccc"/>
</g>
<!-- Central clock face -->
<circle cx="150" cy="150" r="70" fill="url(#clockFaceGrad)" stroke="#444" stroke-width="4" rx="10" ry="10"/>
<!-- Clock numbers -->
<text x="150" y="80" text-anchor="middle" font-size="14" fill="#aa3377">12</text>
<text x="220" y="150" text-anchor="middle" font-size="14" fill="#aa3377">3</text>
<text x="150" y="220" text-anchor="middle" font-size="14" fill="#aa3377">6</text>
<text x="80" y="150" text-anchor="middle" font-size="14" fill="#aa3377">9</text>
<!-- Clock hands - melting style -->
<!-- Hour hand -->
<g transform="translate(150,150) rotate(60)">
<path d="M0,0 L0,-40" stroke="#444" stroke-width="4" stroke-linecap="round"/>
<circle cx="0" cy="-40" r="4" fill="#444"/>
</g>
<!-- Minute hand -->
<g transform="translate(150,150) rotate(120)">
<path d="M0,0 L0,-60" stroke="#222" stroke-width="3" stroke-linecap="round"/>
<circle cx="0" cy="-60" r="3" fill="#222"/>
</g>
<!-- Melting clock edges - artistic drips -->
<path d="M150,80
Q148,75 150,70
Q152,75 150,80
Z" fill="#efefef"/>
<path d="M150,220
Q148,225 150,230
Q152,225 150,220
Z" fill="#efefef"/>
</svg>
Judge's Analysis
Player 1's submission is more visually appealing and closely adheres to the prompt by incorporating the candy cane pattern into the clock design.
The execution is polished, and the composition effectively blends the concept of a clock with the visual style of candy canes.
Player 2's submission shows some creativity with the melting effect, but it lacks refinement and does not clearly convey the candy cane theme as effectively as Player 1's design.
These metrics analyze technical aspects of both SVG drawings. Look for differences that might explain the judge's decision. Use the "View Code" button above to see the SVG code for each drawing.
Shapes Metrics
The total number of shape elements (rect, circle, ellipse, line, polygon, polyline, path) in the SVG.
The number of rectangle elements (rect) in the SVG.
The number of circle elements (circle) in the SVG.
The number of ellipse elements (ellipse) in the SVG.
The number of line elements (line) in the SVG.
The number of polygon elements (polygon) in the SVG.
The number of path elements (path) in the SVG.
The number of group elements (g) in the SVG.
Visual Effects Metrics
The number of gradient definitions (linearGradient, radialGradient) in the SVG.
The number of pattern definitions (pattern) in the SVG.
The number of filter definitions (filter) in the SVG.
The number of mask definitions (mask) in the SVG.
The number of clipping path definitions (clipPath) in the SVG.
The number of elements with opacity attributes in the SVG.
The number of elements with stroke attributes in the SVG.
Colors Metrics
The number of unique colors used in the SVG.
Interactivity Metrics
The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.
The number of elements with transform attributes in the SVG.
Complexity Metrics
The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.
The maximum nesting level of group elements (g) in the SVG.
The number of elements defined within the defs element in the SVG.
The number of use elements (use) in the SVG.
Text Metrics
The number of text elements (text) in the SVG.
AI Judging Process
Creativity
Originality, innovative use of shapes and unique approach to the prompt.
Prompt Adherence
How accurately the SVG captures the essence of the prompt.
Visual Appeal
Aesthetic quality including composition, color usage and overall visual impact.
How does judging work?
SVG drawings are converted to static PNG images for evaluation. The AI judge receives the original prompt and both images, then determines which drawing better fulfills the evaluation criteria without seeing animations, interactivity, or SVG code.
Similar Challenges
"A snail racing a cheetah under a rainbow."
"A giraffe in space repairing a satellite with a tiny wrench."
"Two penguins fencing with candy canes on an ice floe at sunset."
"An octopus juggling planets under a starry sky."