Creative Challenge
"A cactus wearing sunglasses, sipping lemonade, on a vibrant desert background, pop art style"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="bgGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FFDD44;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FF6600;stop-opacity:1" />
</linearGradient>
<radialGradient id="cactusGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#76C7C0;stop-opacity:1" />
<stop offset="100%" style="stop-color:#3FAF9B;stop-opacity:1" />
</radialGradient>
<pattern id="lemonadePattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="3" fill="#F9EBAF" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#bgGradient)" />
<g transform="translate(100, 100)">
<path d="M20 0 C40 20, 60 20, 60 0 L40 80 L20 80 Z" fill="url(#cactusGradient)"/>
<path d="M30 10 C45 25, 45 25, 30 5" fill="url(#cactusGradient)"/>
<path d="M50 10 C65 25, 65 25, 50 5" fill="url(#cactusGradient)"/>
<rect x="10" y="75" width="40" height="15" fill="#A9D24E" />
<g>
<ellipse cx="20" cy="15" rx="15" ry="5" fill="#000" opacity="0.6" />
<ellipse cx="50" cy="15" rx="15" ry="5" fill="#000" opacity="0.6" />
</g>
<path d="M10 85 Q15 90 10 95 Q15 90 25 95 Q40 90 45 85" fill="url(#lemonadePattern)" />
<circle cx="25" cy="90" r="5" fill="#FFCC00" />
<path d="M25 75 Q25 80 30 80 Q25 80 25 75" fill="#FFFFFF" />
</g>
<text x="10" y="290" font-family="Arial" font-size="18" fill="#FFFFFF" font-weight="bold"
style="text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);">Cactus Chill</text>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:gold;stop-opacity:1" />
<stop offset="100%" style="stop-color:orange;stop-opacity:1" />
</linearGradient>
<linearGradient id="sunglassGrad" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:purple;stop-opacity:1" />
<stop offset="100%" style="stop-color:indigo;stop-opacity:1" />
</linearGradient>
<pattern id="cactusTexture" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="2" fill="limegreen" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#skyGrad)" />
<ellipse cx="150" cy="250" rx="120" ry="50" fill="#F4A460" />
<g transform="translate(50,40)">
<path d="M100 80 Q90 50, 60 50 Q60 90, 70 110 Q60 140, 100 140 Q140 140, 130 110 Q140 90, 140 50 Q110 50, 100 80 Z" fill="url(#cactusTexture)" stroke="darkgreen" stroke-width="4"/>
<line x1="85" y1="60" x2="75" y2="20" stroke="darkgreen" stroke-width="4" />
<line x1="115" y1="60" x2="125" y2="20" stroke="darkgreen" stroke-width="4" />
<ellipse cx="90" cy="100" rx="10" ry="18" fill="green" />
<ellipse cx="110" cy="100" rx="10" ry="18" fill="green" />
</g>
<rect x="100" y="220" width="100" height="10" fill="yellow" stroke="gray" stroke-width="2" transform="rotate(-10 150 225)" />
<rect x="160" y="75" width="30" height="10" fill="url(#sunglassGrad)" ry="5" />
<rect x="110" y="75" width="30" height="10" fill="url(#sunglassGrad)" ry="5" />
<path d="M140 80 L150 90 L145 100 L135 90 Z" fill="black"/>
<circle cx="180" cy="180" r="30" fill="yellow" stroke="orange" stroke-width="4" />
<line x1="182" y1="182" x2="190" y2="150" stroke="red" stroke-width="4" />
</svg>
Judge's Analysis
Player 2's image adheres more closely to the prompt by clearly depicting a cactus wearing sunglasses and sipping lemonade, which is more evident than in Player 1's submission.
The vibrant desert background and pop art style are also executed with more clarity and creativity, enhancing the overall visual appeal and thematic coherence.
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
"Banjo-playing pineapple under a disco spotlight"
"A snail surfing a leaf on a rainbow wave"
"Bioluminescent jellyfish in a starry night sky"
"Cactus plays piano under a starry desert sky"
"Ice skate wearing flamingo juggling snowballs"
"A hamster astronaut planting a tiny flag on a giant cheese moon"