Creative Challenge
"An ice cream cone melting under a miniature sun on a tiny desert island."
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<!-- Sun gradient -->
<radialGradient id="sunGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#FFFF00" />
<stop offset="80%" stop-color="#FF8C00" />
<stop offset="100%" stop-color="#FF4500" />
</radialGradient>
<!-- Water gradient -->
<linearGradient id="waterGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#87CEFA" />
<stop offset="100%" stop-color="#1E90FF" />
</linearGradient>
<!-- Sand pattern -->
<pattern id="sandPattern" width="8" height="8" patternUnits="userSpaceOnUse">
<rect width="8" height="8" fill="#F5DEB3" />
<circle cx="4" cy="4" r="0.8" fill="#D2B48C" opacity="0.3" />
</pattern>
<!-- Ice cream gradients -->
<linearGradient id="vanillaGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#FFFAF0" />
<stop offset="100%" stop-color="#F5DEB3" />
</linearGradient>
<linearGradient id="chocolateGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#8B4513" />
<stop offset="100%" stop-color="#5C3317" />
</linearGradient>
<linearGradient id="strawberryGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#FF69B4" />
<stop offset="100%" stop-color="#CD5C5C" />
</linearGradient>
<!-- Cone pattern -->
<pattern id="conePattern" width="10" height="10" patternUnits="userSpaceOnUse">
<rect width="10" height="10" fill="#D2B48C" />
<path d="M0 10 L 10 0" stroke="#A0522D" stroke-width="0.5" />
<path d="M0 5 L 5 0" stroke="#A0522D" stroke-width="0.5" />
<path d="M5 10 L 10 5" stroke="#A0522D" stroke-width="0.5" />
</pattern>
<!-- Heat wave filter -->
<filter id="heatWave" x="-20%" y="-20%" width="140%" height="140%">
<feTurbulence type="fractalNoise" baseFrequency="0.05" numOctaves="2" result="turbulence" seed="5" />
<feDisplacementMap in="SourceGraphic" in2="turbulence" scale="5" xChannelSelector="R" yChannelSelector="G" />
</filter>
<!-- Strong heat wave filter -->
<filter id="strongHeatWave" x="-20%" y="-20%" width="140%" height="140%">
<feTurbulence type="fractalNoise" baseFrequency="0.03" numOctaves="3" result="turbulence" seed="10" />
<feDisplacementMap in="SourceGraphic" in2="turbulence" scale="10" xChannelSelector="R" yChannelSelector="G" />
</filter>
<!-- Drop shadow -->
<filter id="dropShadow" x="-20%" y="-20%" width="140%" height="140%">
<feDropShadow dx="2" dy="2" stdDeviation="3" flood-color="#00000044" />
</filter>
<!-- Sun glow -->
<filter id="sunGlow">
<feGaussianBlur stdDeviation="2.5" result="blur" />
<feComposite in="SourceGraphic" in2="blur" operator="over" />
</filter>
</defs>
<!-- Sky background -->
<rect x="0" y="0" width="300" height="300" fill="#87CEEB" />
<!-- Water -->
<rect x="0" y="180" width="300" height="120" fill="url(#waterGradient)" />
<!-- Sun reflection in water -->
<ellipse cx="200" cy="230" rx="15" ry="8" fill="#FFD70066" filter="url(#heatWave)" />
<!-- Island -->
<ellipse cx="150" cy="195" rx="60" ry="25" fill="url(#sandPattern)" filter="url(#dropShadow)" />
<!-- Palm tree trunk -->
<path d="M120 195 C 118 180, 115 160, 110 145" stroke="#8B4513" stroke-width="4" fill="none" />
<!-- Palm tree leaves -->
<path d="M110 145 C 95 135, 85 140, 80 150" stroke="#228B22" stroke-width="3" fill="#228B22" stroke-linecap="round" />
<path d="M110 145 C 125 130, 140 135, 145 145" stroke="#228B22" stroke-width="3" fill="#228B22" stroke-linecap="round" />
<path d="M110 145 C 105 125, 115 115, 125 120" stroke="#228B22" stroke-width="3" fill="#228B22" stroke-linecap="round" />
<path d="M110 145 C 90 140, 80 145, 75 155" stroke="#228B22" stroke-width="2" fill="#228B22" stroke-linecap="round" />
<!-- Sun with glow -->
<circle cx="200" cy="70" r="28" fill="#FFFF0033" filter="url(#sunGlow)" />
<circle cx="200" cy="70" r="25" fill="url(#sunGradient)" filter="url(#strongHeatWave)" />
<!-- Sun rays -->
<g stroke="#FFD700" stroke-width="2">
<line x1="200" y1="35" x2="200" y2="25" />
<line x1="200" y1="105" x2="200" y2="115" />
<line x1="165" y1="70" x2="155" y2="70" />
<line x1="235" y1="70" x2="245" y2="70" />
<line x1="177" y1="47" x2="167" y2="37" />
<line x1="223" y1="93" x2="233" y2="103" />
<line x1="177" y1="93" x2="167" y2="103" />
<line x1="223" y1="47" x2="233" y2="37" />
</g>
<!-- Heat waves -->
<path d="M175 95 C 185 105, 195 100, 205 110 C 215 120, 225 115, 235 125" stroke="#FF8C00" stroke-width="1.5" fill="none" opacity="0.5" />
<path d="M165 105 C 175 115, 185 110, 195 120 C 205 130, 215 125, 225 135" stroke="#FF8C00" stroke-width="1.5" fill="none" opacity="0.5" />
<path d="M155 115 C 165 125, 175 120, 185 130 C 195 140, 205 135, 215 145" stroke="#FF8C00" stroke-width="1.5" fill="none" opacity="0.5" />
<path d="M160 125 C 170 135, 180 130, 190 140 C 200 150, 210 145, 220 155" stroke="#FF8C00" stroke-width="1.5" fill="none" opacity="0.5" />
<!-- Puddle of melted ice cream on the sand -->
<ellipse cx="150" cy="195" rx="30" ry="12" fill="#F8F0E366" filter="url(#heatWave)" />
<!-- Ice cream cone -->
<path d="M150 190 L 135 160 L 165 160 Z" fill="url(#conePattern)" filter="url(#dropShadow)" />
<!-- Melting ice cream -->
<g filter="url(#dropShadow)">
<!-- Vanilla base - heavily melted -->
<path d="M150 135
C 170 140, 175 150, 170 160
C 160 170, 140 170, 130 160
C 125 150, 130 140, 150 135"
fill="url(#vanillaGradient)" />
<!-- Chocolate middle - partially melted -->
<path d="M150 115
C 165 120, 175 125, 165 140
C 155 150, 135 145, 130 135
C 125 125, 135 115, 150 115"
fill="url(#chocolateGradient)" />
<!-- Strawberry top - starting to melt -->
<path d="M150 95
C 165 95, 170 105, 165 120
C 155 130, 145 130, 135 120
C 130 105, 135 95, 150 95"
fill="url(#strawberryGradient)" />
<!-- Large melting drips -->
<path d="M170 125 C 180 135, 185 150, 190 170 C 190 180, 185 185, 180 187" fill="url(#strawberryGradient)" opacity="0.9" />
<path d="M140 150 C 130 160, 125 175, 120 190 C 118 195, 122 197, 125 198" fill="url(#chocolateGradient)" opacity="0.9" />
<path d="M155 160 C 160 175, 158 185, 155 195" fill="url(#vanillaGradient)" opacity="0.9" />
<path d="M175 130 C 185 145, 190 155, 188 175" fill="url(#strawberryGradient)" opacity="0.85" />
<path d="M130 140 C 125 155, 122 170, 118 185" fill="url(#chocolateGradient)" opacity="0.85" />
<!-- Small drips and drops -->
<circle cx="190" cy="160" r="5" fill="url(#strawberryGradient)" opacity="0.9" />
<circle cx="120" cy="180" r="5" fill="url(#chocolateGradient)" opacity="0.9" />
<circle cx="155" cy="185" r="4" fill="url(#vanillaGradient)" opacity="0.9" />
<ellipse cx="145" cy="175" rx="3" ry="5" fill="url(#vanillaGradient)" opacity="0.9" />
<ellipse cx="175" cy="165" rx="3" ry="5" fill="url(#strawberryGradient)" opacity="0.9" />
<ellipse cx="188" cy="170" rx="4" ry="6" fill="url(#strawberryGradient)" opacity="0.8" />
<ellipse cx="118" cy="190" rx="4" ry="6" fill="url(#chocolateGradient)" opacity="0.8" />
</g>
<!-- Ice cream details -->
<circle cx="155" cy="100" r="3" fill="#FF0000" opacity="0.9" /> <!-- Cherry bit -->
<circle cx="145" cy="105" r="2" fill="#8B4513" /> <!-- Chocolate chip -->
<circle cx="160" cy="120" r="2" fill="#8B4513" /> <!-- Chocolate chip -->
<path d="M140 130 L 145 135" stroke="#5C3317" stroke-width="1" /> <!-- Chocolate sauce drip -->
<circle cx="140" cy="110" r="2" fill="#8B4513" /> <!-- Another chocolate chip -->
<!-- Tiny shells on the beach -->
<circle cx="110" cy="195" r="3" fill="#FFF5EE" />
<circle cx="190" cy="198" r="2" fill="#FFF5EE" />
<path d="M120 200 C 122 198, 125 198, 127 200" stroke="#FFF5EE" stroke-width="2" fill="none" />
<path d="M175 195 C 177 193, 180 193, 182 195" stroke="#FFF5EE" stroke-width="1.5" fill="none" />
<!-- Water bubbles -->
<circle cx="220" cy="220" r="2" fill="#FFFFFF" opacity="0.7" />
<circle cx="80" cy="230" r="2" fill="#FFFFFF" opacity="0.7" />
<circle cx="180" cy="240" r="2" fill="#FFFFFF" opacity="0.7" />
<circle cx="120" cy="225" r="2" fill="#FFFFFF" opacity="0.7" />
<circle cx="250" cy="210" r="2" fill="#FFFFFF" opacity="0.7" />
<circle cx="30" cy="200" r="2" fill="#FFFFFF" opacity="0.7" />
<circle cx="280" cy="235" r="1.5" fill="#FFFFFF" opacity="0.7" />
<circle cx="60" cy="215" r="1.5" fill="#FFFFFF" opacity="0.7" />
<!-- Tiny beach ball -->
<circle cx="210" cy="190" r="5" fill="#FF5555" opacity="0.8" />
<path d="M205 190 A 5 5 0 0 0 215 190" fill="#5555FF" opacity="0.8" />
<path d="M210 185 A 5 5 0 0 0 210 195" fill="#55FF55" opacity="0.8" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="sunGrad">
<stop offset="0%" style="stop-color:#fff5b0"/>
<stop offset="40%" style="stop-color:#ffeb3b"/>
<stop offset="80%" style="stop-color:#ff9800"/>
<stop offset="100%" style="stop-color:#ff5722"/>
</radialGradient>
<radialGradient id="skyGrad" cx="50%" cy="30%">
<stop offset="0%" style="stop-color:#87ceeb"/>
<stop offset="100%" style="stop-color:#4a90e2"/>
</radialGradient>
<linearGradient id="sandGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#f4d03f"/>
<stop offset="100%" style="stop-color:#d4a76a"/>
</linearGradient>
<linearGradient id="coneGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#d4a574"/>
<stop offset="50%" style="stop-color:#8b6239"/>
<stop offset="100%" style="stop-color:#654321"/>
</linearGradient>
<radialGradient id="meltGrad">
<stop offset="0%" style="stop-color:#ffc0cb"/>
<stop offset="50%" style="stop-color:#ff69b4"/>
<stop offset="100%" style="stop-color:#ff1493"/>
</radialGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="3" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<pattern id="crosshatch" patternUnits="userSpaceOnUse" width="4" height="4">
<path d="M0,4 l4,-4 M-1,1 l2,-2 M3,5 l2,-2" stroke="#8b6239" stroke-width="0.5" opacity="0.3"/>
</pattern>
</defs>
<!-- Sky background -->
<rect width="300" height="200" fill="url(#skyGrad)"/>
<!-- Sun with rays -->
<g transform="translate(80, 60)">
<circle r="25" fill="url(#sunGrad)" filter="url(#glow)">
<animate attributeName="r" values="25;27;25" dur="3s" repeatCount="indefinite"/>
</circle>
<g opacity="0.8">
<path d="M0,-35 L0,-45" stroke="#ff9800" stroke-width="3" stroke-linecap="round"/>
<path d="M25,-25 L32,-32" stroke="#ff9800" stroke-width="3" stroke-linecap="round"/>
<path d="M35,0 L45,0" stroke="#ff9800" stroke-width="3" stroke-linecap="round"/>
<path d="M25,25 L32,32" stroke="#ff9800" stroke-width="3" stroke-linecap="round"/>
<path d="M0,35 L0,45" stroke="#ff9800" stroke-width="3" stroke-linecap="round"/>
<path d="M-25,25 L-32,32" stroke="#ff9800" stroke-width="3" stroke-linecap="round"/>
<path d="M-35,0 L-45,0" stroke="#ff9800" stroke-width="3" stroke-linecap="round"/>
<path d="M-25,-25 L-32,-32" stroke="#ff9800" stroke-width="3" stroke-linecap="round"/>
</g>
</g>
<!-- Ocean waves -->
<path d="M0,200 Q75,190 150,200 T300,200 L300,300 L0,300 Z" fill="#4682b4" opacity="0.8"/>
<path d="M0,210 Q75,200 150,210 T300,210 L300,300 L0,300 Z" fill="#1e90ff" opacity="0.6"/>
<!-- Desert island -->
<ellipse cx="150" cy="220" rx="100" ry="30" fill="url(#sandGrad)"/>
<!-- Palm tree -->
<g transform="translate(220, 180)">
<path d="M0,40 Q-5,20 -3,0" stroke="#8b4513" stroke-width="4" fill="none"/>
<path d="M-3,0 Q-10,-8 -20,-10 Q-10,-5 -3,0" fill="#228b22"/>
<path d="M-3,0 Q-5,-10 -8,-18 Q-5,-8 -3,0" fill="#228b22"/>
<path d="M-3,0 Q5,-10 8,-18 Q5,-8 -3,0" fill="#228b22"/>
<path d="M-3,0 Q10,-8 20,-10 Q10,-5 -3,0" fill="#228b22"/>
</g>
<!-- Ice cream cone -->
<g transform="translate(150, 150)">
<!-- Cone -->
<path d="M-20,30 L0,80 L20,30 Z" fill="url(#coneGrad)" stroke="#654321" stroke-width="1"/>
<path d="M-20,30 L0,80 L20,30 Z" fill="url(#crosshatch)"/>
<!-- Melting ice cream -->
<ellipse cx="0" cy="25" rx="25" ry="20" fill="url(#meltGrad)" opacity="0.9"/>
<ellipse cx="0" cy="20" rx="22" ry="18" fill="#ffb6c1" opacity="0.8"/>
<!-- Drips -->
<path d="M-15,35 Q-15,45 -12,55 Q-10,65 -8,70" stroke="#ff69b4" stroke-width="4" fill="none" stroke-linecap="round">
<animate attributeName="d" values="M-15,35 Q-15,45 -12,55 Q-10,65 -8,70;M-15,35 Q-15,48 -12,58 Q-10,68 -8,75;M-15,35 Q-15,45 -12,55 Q-10,65 -8,70" dur="4s" repeatCount="indefinite"/>
</path>
<path d="M5,38 Q5,48 7,58" stroke="#ff69b4" stroke-width="3" fill="none" stroke-linecap="round">
<animate attributeName="d" values="M5,38 Q5,48 7,58;M5,38 Q5,50 7,62;M5,38 Q5,48 7,58" dur="3s" repeatCount="indefinite"/>
</path>
<path d="M12,36 Q12,44 14,52" stroke="#ff69b4" stroke-width="2.5" fill="none" stroke-linecap="round">
<animate attributeName="d" values="M12,36 Q12,44 14,52;M12,36 Q12,46 14,56;M12,36 Q12,44 14,52" dur="3.5s" repeatCount="indefinite"/>
</path>
<!-- Melting puddle -->
<ellipse cx="0" cy="85" rx="35" ry="8" fill="#ff69b4" opacity="0.6">
<animate attributeName="rx" values="35;40;35" dur="4s" repeatCount="indefinite"/>
<animate attributeName="ry" values="8;10;8" dur="4s" repeatCount="indefinite"/>
</ellipse>
</g>
<!-- Heat waves -->
<g opacity="0.3">
<path d="M60,100 Q65,95 60,90 Q55,85 60,80" stroke="#ff9800" stroke-width="2" fill="none">
<animateTransform attributeName="transform" type="translate" values="0,0;5,0;0,0" dur="2s" repeatCount="indefinite"/>
</path>
<path d="M100,110 Q105,105 100,100 Q95,95 100,90" stroke="#ff9800" stroke-width="2" fill="none">
<animateTransform attributeName="transform" type="translate" values="0,0;-5,0;0,0" dur="2.5s" repeatCount="indefinite"/>
</path>
</g>
</svg>
Judge's Analysis
Player 1's submission stands out due to its creative and detailed execution, featuring elements like a miniature palm tree, a fish, and a more dynamic melting effect on the ice cream.
The composition feels more vibrant and visually engaging, adhering closely to the prompt.
Player 2's submission, while simpler and clean, lacks the same level of creativity and detail.
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.