Creative Challenge
"An umbrella vending machine in the middle of a desert during a sandstorm."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background: swirling sandstorm with gradient -->
<defs>
<linearGradient id="stormGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#f4c351"/>
<stop offset="100%" stop-color="#d97f2d"/>
</linearGradient>
<!-- Sand particles pattern -->
<pattern id="sandPattern" patternUnits="userSpaceOnUse" width="4" height="4">
<circle cx="2" cy="2" r="1" fill="#e2b45b" opacity="0.5"/>
</pattern>
<!-- Umbrella canopy gradient -->
<linearGradient id="umbrellaGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#ff5f6d"/>
<stop offset="100%" stop-color="#ffc371"/>
</linearGradient>
<!-- Vending machine gradient -->
<linearGradient id="machineGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#555"/>
<stop offset="100%" stop-color="#222"/>
</linearGradient>
</defs>
<!-- Sandstorm background with swirling lines -->
<rect width="300" height="300" fill="url(#stormGradient)" opacity="0.6"/>
<!-- Swirling sandstorm lines -->
<path d="M0,150 Q75,50 150,150 T300,150" stroke="#f4c351" stroke-width="2" opacity="0.4" fill="none"/>
<path d="M0,200 Q75,250 150,200 T300,200" stroke="#f4c351" stroke-width="2" opacity="0.3" fill="none"/>
<path d="M0,100 Q75,150 150,100 T300,100" stroke="#f4c351" stroke-width="2" opacity="0.2" fill="none"/>
<!-- Sand particles -->
<rect width="300" height="300" fill="url(#sandPattern)" opacity="0.2"/>
<!-- Vending Machine -->
<rect x="125" y="180" width="50" height="80" rx="5" fill="url(#machineGradient)" stroke="#444" stroke-width="2"/>
<!-- Screen/display -->
<rect x="135" y="185" width="30" height="15" fill="#222"/>
<!-- Buttons -->
<circle cx="140" cy="210" r="3" fill="#888"/>
<circle cx="150" cy="210" r="3" fill="#888"/>
<circle cx="160" cy="210" r="3" fill="#888"/>
<circle cx="130" cy="220" r="3" fill="#888"/>
<circle cx="140" cy="220" r="3" fill="#888"/>
<circle cx="150" cy="220" r="3" fill="#888"/>
<circle cx="160" cy="220" r="3" fill="#888"/>
<circle cx="170" cy="220" r="3" fill="#888"/>
<!-- Slot for bottles -->
<rect x="130" y="240" width="40" height="10" fill="#444"/>
<!-- Umbrella -->
<path d="M150,180 Q180,130 120,130 Z" fill="url(#umbrellaGradient)" stroke="#cc3333" stroke-width="2"/>
<!-- Umbrella ribs -->
<line x1="150" y1="180" x2="180" y2="130" stroke="#cc3333" stroke-width="1"/>
<line x1="150" y1="180" x2="120" y2="130" stroke="#cc3333" stroke-width="1"/>
<line x1="150" y1="180" x2="165" y2="125" stroke="#cc3333" stroke-width="1"/>
<line x1="150" y1="180" x2="135" y2="125" stroke="#cc3333" stroke-width="1"/>
<line x1="150" y1="180" x2="150" y2="125" stroke="#cc3333" stroke-width="1"/>
<!-- Umbrella handle -->
<line x1="150" y1="180" x2="150" y2="210" stroke="#444" stroke-width="3"/>
<circle cx="150" cy="210" r="4" fill="#444"/>
<!-- Abstract sand dunes (stylized) -->
<path d="M0,250 Q50,220 100,250 T200,250 T300,250 V300 H0 Z" fill="#c88d4a" opacity="0.8"/>
<!-- Light cap on dunes -->
<path d="M0,245 Q50,215 100,245 T200,245 T300,245 V300 H0 Z" fill="#e2aa7f" opacity="0.6"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#A07040;stop-opacity:1" />
<stop offset="40%" style="stop-color:#C4A484;stop-opacity:1" />
<stop offset="100%" style="stop-color:#E6D8B8;stop-opacity:1" />
</linearGradient>
<linearGradient id="machineBodyGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#6c7a89;" />
<stop offset="50%" style="stop-color:#95a5a6;" />
<stop offset="100%" style="stop-color:#6c7a89;" />
</linearGradient>
<linearGradient id="glassGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#BFBFBF; stop-opacity:0.3;" />
<stop offset="100%" style="stop-color:#E0E0E0; stop-opacity:0.1;" />
</linearGradient>
<radialGradient id="buttonGlow">
<stop offset="0%" stop-color="#FFFF00" stop-opacity="0.8" />
<stop offset="100%" stop-color="#FFFF00" stop-opacity="0" />
</radialGradient>
<pattern id="sandTexture" patternUnits="userSpaceOnUse" width="5" height="5" viewBox="0 0 10 10">
<circle cx="1" cy="1" r="0.5" fill="#D2B48C" opacity="0.3"/>
<circle cx="3" cy="4" r="0.3" fill="#C4A484" opacity="0.2"/>
<circle cx="4" cy="2" r="0.4" fill="#D2B48C" opacity="0.25"/>
</pattern>
</defs>
<!-- Sky -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Sand Dunes -->
<path d="M0,290 C50,270 100,310 150,290 S250,270 300,290 V300 H0 Z" fill="#C19A6B" opacity="0.8"/>
<path d="M0,270 C60,250 120,280 180,260 S260,240 300,270 V300 H0 Z" fill="#D2B48C" opacity="0.9"/>
<path d="M0,280 C70,265 150,295 220,275 S300,260 300,285 V300 H0 Z" fill="#B58864"/>
<!-- Vending Machine -->
<g id="vendingMachine" transform="translate(0 -10)">
<!-- Base sand pile -->
<path d="M90,280 Q100,270 115,278 C120,282 125,275 135,276 L165,276 C175,275 180,282 185,278 Q200,270 210,280 L200,285 L100,285 Z" fill="#B58864" />
<path d="M95,283 Q105,275 118,281 C123,284 128,278 138,279 L162,279 C172,278 177,284 182,281 Q195,275 205,283 L195,288 L105,288 Z" fill="#C19A6B" />
<!-- Machine Body -->
<rect x="110" y="170" width="80" height="110" rx="5" fill="url(#machineBodyGradient)" stroke="#4A5560" stroke-width="1.5"/>
<!-- Sand on machine -->
<rect x="110" y="170" width="80" height="110" rx="5" fill="url(#sandTexture)" opacity="0.1" />
<!-- Display Window -->
<rect x="118" y="178" width="64" height="60" fill="#223344" rx="2"/>
<!-- Umbrellas in display -->
<g id="umbrella1" transform="translate(125 185) rotate(-15)">
<rect y="0" width="6" height="20" fill="#FF4500" rx="1"/>
<ellipse cx="3" cy="-5" rx="8" ry="4" fill="#FF4500" transform="scale(1,0.8)"/>
</g>
<g id="umbrella2" transform="translate(142 183) rotate(0)">
<rect y="0" width="6" height="22" fill="#4682B4" rx="1"/>
<ellipse cx="3" cy="-6" rx="8" ry="4" fill="#4682B4" transform="scale(1,0.8)"/>
</g>
<g id="umbrella3" transform="translate(159 186) rotate(10)">
<rect y="0" width="6" height="19" fill="#32CD32" rx="1"/>
<ellipse cx="3" cy="-5" rx="8" ry="4" fill="#32CD32" transform="scale(1,0.8)"/>
</g>
<g id="umbrella4" transform="translate(133 208) rotate(-5)">
<rect y="0" width="6" height="20" fill="#FFD700" rx="1"/>
<ellipse cx="3" cy="-5" rx="8" ry="4" fill="#FFD700" transform="scale(1,0.8)"/>
</g>
<g id="umbrella5" transform="translate(150 206) rotate(5)">
<rect y="0" width="6" height="22" fill="#FF69B4" rx="1"/>
<ellipse cx="3" cy="-6" rx="8" ry="4" fill="#FF69B4" transform="scale(1,0.8)"/>
</g>
<rect x="118" y="178" width="64" height="60" fill="url(#glassGradient)" rx="2"/> <!-- Glass Pane -->
<!-- Control Panel -->
<rect x="120" y="245" width="25" height="25" fill="#3D4852" rx="2"/> <!-- Coin Slot Area -->
<rect x="124" y="250" width="17" height="3" fill="#202830" rx="1"/> <!-- Actual Slot -->
<circle cx="128" cy="262" r="2" fill="#101418" /> <!-- Coin return (dark circle) -->
<rect x="155" y="245" width="25" height="25" fill="#3D4852" rx="2"/> <!-- Button Area -->
<circle cx="162" cy="252" r="3" fill="#FFFF00" stroke="#AFAF00" stroke-width="0.5"/> <!-- Yellow Button -->
<circle cx="162" cy="252" r="5" fill="url(#buttonGlow)" /> <!-- Glow for button -->
<circle cx="172" cy="252" r="2.5" fill="#DDDDDD" stroke="#888888" stroke-width="0.5"/> <!-- Small silver button -->
<!-- Dispensing Slot -->
<rect x="115" y="270" width="70" height="8" fill="#202830" stroke="#101418" stroke-width="1" rx="1"/>
<rect x="117" y="271.5" width="66" height="5" fill="#101418" opacity="0.7" rx="0.5"/> <!-- Inner shadow -->
<!-- Machine Top Logo/Sign -->
<rect x="125" y="160" width="50" height="10" fill="#3D4852" rx="2"/>
<path d="M130 167 Q137.5 162 145 167 T160 167" stroke="#FFFFFF" stroke-width="1.5" fill="none" stroke-linecap="round"/>
<line x1="145" y1="167" x2="145" y2="169" stroke="#FFFFFF" stroke-width="1"/>
</g>
<!-- Fallen Umbrella -->
<g id="fallenUmbrella" transform="translate(60 265) rotate(-75)">
<path d="M0,0 L0,25" stroke="#A0522D" stroke-width="3" />
<path d="M-2,25 C-15,20 -20,5 -15, -5 C-10,-15 5,-20 15,-10 C20,-5 15,10 5,18 L0,25 Z" fill="#D9534F" opacity="0.9" stroke="#A13C38" stroke-width="0.5"/>
<path d="M-10,15 Q0,25 10,15 Q20,20 10,28 L-10,28 Z" fill="#D2B48C" opacity="0.6" transform="rotate(15) translate(5, -2)"/>
</g>
<!-- Sandstorm Effect (Wind Lines & Particles) -->
<g id="sandstormLayers" opacity="0.7">
<path d="M-50,50 Q150,20 350,70 L350,120 Q150,100 -50,100 Z" fill="#E6D8B8" opacity="0.2"/>
<path d="M-50,150 Q150,120 350,170 L350,220 Q150,200 -50,200 Z" fill="#C4A484" opacity="0.25"/>
<path d="M-50,250 Q150,220 350,270 L350,320 Q150,300 -50,300 Z" fill="#A07040" opacity="0.15"/>
<path d="M0,30 C100,20 200,40 300,25" stroke="#D2B48C" stroke-width="1.5" fill="none" opacity="0.5" stroke-dasharray="5,5"/>
<path d="M0,80 C100,70 200,90 300,75" stroke="#C4A484" stroke-width="2" fill="none" opacity="0.6"/>
<path d="M0,130 C100,120 200,140 300,125" stroke="#D2B48C" stroke-width="1" fill="none" opacity="0.4" stroke-dasharray="3,3"/>
<path d="M0,180 C100,170 200,190 300,175" stroke="#C4A484" stroke-width="2.5" fill="none" opacity="0.5"/>
<path d="M0,230 C100,220 200,240 300,225" stroke="#D2B48C" stroke-width="1.5" fill="none" opacity="0.6" stroke-dasharray="6,4"/>
<path d="M0,280 C100,270 200,290 300,275" stroke="#B58864" stroke-width="2" fill="none" opacity="0.7"/>
<path d="M20,10 S80,15 140,8 S200,12 260,5" stroke="#E6D8B8" stroke-width="0.5" fill="none" opacity="0.7"/>
<path d="M40,60 S100,65 160,58 S220,62 280,55" stroke="#E6D8B8" stroke-width="0.7" fill="none" opacity="0.6"/>
<path d="M10,110 S70,115 130,108 S190,112 250,105" stroke="#C4A484" stroke-width="0.5" fill="none" opacity="0.5"/>
<path d="M30,160 S90,165 150,158 S210,162 270,155" stroke="#C4A484" stroke-width="0.8" fill="none" opacity="0.6"/>
<path d="M50,210 S110,215 170,208 S230,212 290,205" stroke="#D2B48C" stroke-width="0.6" fill="none" opacity="0.7"/>
</g>
<radialGradient id="vignette" cx="50%" cy="50%" r="70%" fx="50%" fy="50%">
<stop offset="40%" stop-color="rgba(0,0,0,0)" />
<stop offset="100%" stop-color="rgba(100,80,50,0.3)" />
</radialGradient>
<rect x="0" y="0" width="300" height="300" fill="url(#vignette)" />
</svg>
Judge's Analysis
Player 2's submission better adheres to the prompt by clearly depicting a vending machine with umbrellas inside, set in a desert environment with a sandstorm-like atmosphere.
The technical execution and composition are stronger, with more details and elements that align with the concept.
Player 1's image is less detailed and less effective in conveying the idea of an umbrella vending machine amidst a sandstorm.
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 robotic octopus juggling glowing planets in space."
"A snail racing a rocket under a rainbow."
"A snail racing a rocket on a rainbow track."
"A cactus wearing a wizard’s hat and casting a spell."