Creative Challenge
"An ice cream cone melting under a tiny umbrella."
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<!-- Background gradient -->
<radialGradient id="bgGrad" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#FFF8E8"/>
<stop offset="100%" stop-color="#FFE4C4"/>
</radialGradient>
<!-- Waffle cone pattern -->
<pattern id="waffle" width="8" height="8" patternUnits="userSpaceOnUse">
<path d="M0,0 l8,8 M8,0 l-8,8" stroke="#C68642" stroke-width="0.5"/>
</pattern>
<!-- Scoop gradient -->
<radialGradient id="scoopGrad" cx="50%" cy="40%" r="60%">
<stop offset="0%" stop-color="#FFF1F3"/>
<stop offset="50%" stop-color="#FFA3B1"/>
<stop offset="100%" stop-color="#FF6384"/>
</radialGradient>
<!-- Umbrella stripes -->
<linearGradient id="umbrellaStripes" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#FFD1D9"/>
<stop offset="50%" stop-color="#FF5C74"/>
<stop offset="100%" stop-color="#FFD1D9"/>
</linearGradient>
<!-- Umbrella handle gradient -->
<linearGradient id="handleGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#8B5E3C"/>
<stop offset="100%" stop-color="#5C3A1A"/>
</linearGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#bgGrad)"/>
<!-- Ice cream cone -->
<g transform="translate(0,10)">
<polygon points="150,270 110,150 190,150" fill="url(#waffle)" stroke="#CA8F52" stroke-width="2"/>
<!-- Scoop -->
<circle cx="150" cy="150" r="60" fill="url(#scoopGrad)" stroke="#FF8F9E" stroke-width="2"/>
<!-- Scoop highlight -->
<ellipse cx="135" cy="135" rx="25" ry="15" fill="rgba(255,255,255,0.5)"/>
<!-- Melting drips -->
<path d="M130,175 c2,15 8,15 10,0 z" fill="url(#scoopGrad)" stroke="#FF8F9E" stroke-width="1"/>
<path d="M145,180 c2,12 6,12 8,0 z" fill="url(#scoopGrad)" stroke="#FF8F9E" stroke-width="1"/>
<path d="M165,175 c2,15 8,15 10,0 z" fill="url(#scoopGrad)" stroke="#FF8F9E" stroke-width="1"/>
</g>
<!-- Tiny umbrella -->
<g transform="translate(0,10)">
<!-- Handle -->
<path d="M150,95 L150,120" stroke="url(#handleGrad)" stroke-width="4" stroke-linecap="round"/>
<!-- Canopy with scallops -->
<path d="
M110,95
A40,40 0 0,1 190,95
L190,105
Q180,100 170,105
Q160,100 150,105
Q140,100 130,105
Q120,100 110,105
Z" fill="url(#umbrellaStripes)" stroke="#FF5C74" stroke-width="2"/>
<!-- Umbrella finial -->
<circle cx="150" cy="95" r="3" fill="#FF5C74"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="sky" cx="50%" cy="30%" r="70%">
<stop offset="0%" stop-color="#87CEEB"/>
<stop offset="100%" stop-color="#E0F6FF"/>
</radialGradient>
<linearGradient id="cone" x1="50%" y1="100%" x2="50%" y2="0%">
<stop offset="0%" stop-color="#EFD1A0"/>
<stop offset="100%" stop-color="#F4D03F"/>
</linearGradient>
<linearGradient id="melt" x1="50%" y1="0%" x2="50%" y2="100%">
<stop offset="0%" stop-color="#FFB6C1"/>
<stop offset="100%" stop-color="#FF69B4"/>
</linearGradient>
<pattern id="umbrellaPattern" patternUnits="userSpaceOnUse" width="20" height="20">
<path d="M0 10 Q5 0 10 10 T20 10" stroke="#FF4444" fill="none"/>
<path d="M0 10 Q5 20 10 10 T20 10" stroke="#FF8844" fill="none"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#sky)"/>
<!-- Melt puddle -->
<path d="M110 250 Q140 270 190 250 Q210 265 230 250 L270 280 L30 280 Z"
fill="#FFB6C188" filter="url(#f1)"/>
<!-- Cone -->
<path d="M150 220 L120 280 L180 280 Z" fill="url(#cone)"/>
<!-- Melting scoop -->
<g transform="translate(150 180)">
<ellipse cx="0" cy="-30" rx="40" ry="50" fill="url(#melt)"/>
<path d="M-30 0 Q-20 40 0 50 Q20 40 30 0" fill="#FF69B4"/>
<!-- Drips -->
<path d="M-25 10 Q-30 50 -15 70" fill="none" stroke="#FF1493" stroke-width="3"/>
<path d="M5 15 Q0 40 10 60" fill="none" stroke="#FF69B4" stroke-width="3"/>
<path d="M20 5 Q25 30 35 45" fill="none" stroke="#FFB6C1" stroke-width="3"/>
</g>
<!-- Umbrella -->
<g transform="translate(150 120)">
<path d="M-25 0 A25 40 0 0 1 25 0 L0 -60 Z"
fill="url(#umbrellaPattern)"
stroke="#666"/>
<path d="M0 -60 L0 0" stroke="#666" stroke-width="2"/>
<circle cx="0" cy="-60" r="3" fill="#FFD700"/>
</g>
<!-- Sparkle effects -->
<g fill="#FFFFFFCC">
<circle cx="180" cy="160" r="2"/>
<circle cx="155" cy="130" r="3"/>
<circle cx="130" cy="150" r="2"/>
</g>
<filter id="f1">
<feGaussianBlur stdDeviation="4"/>
</filter>
</svg>
Judge's Analysis
Player 2's submission is more aligned with the prompt, as it includes a visible tiny umbrella over the melting ice cream cone, adding both creativity and adherence to the theme.
The melting effect is more pronounced in Player 2's image, giving it a stronger sense of action and visual appeal.
Player 1's submission, while clean and technically sound, lacks the umbrella element that is central to the prompt.
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 tree growing from an open book, its branches turning into words."
"A single tree growing on a tiny floating island in a starry galaxy."
"Rocketship-shaped hot air balloon floating above a city at sunrise."
"Two alien chefs in a cook-off, each presenting their most bizarre space dish."