Creative Challenge
"Sunglasses-wearing cactus surfing a desert sand wave"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="cactusGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#4CAF50;stop-opacity:1" />
<stop offset="100%" style="stop-color:#333333;stop-opacity:1" />
</linearGradient>
<linearGradient id="sunglassesGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1" />
<stop offset="100%" style="stop-color:#4169E1;stop-opacity:1" />
</linearGradient>
<linearGradient id="waveGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#FFD700;stop-opacity:0.8" />
<stop offset="100%" style="stop-color:#FFA500;stop-opacity:0.8" />
</linearGradient>
<pattern id="sandPattern" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="3" fill="#FFF" opacity="0.5"/>
</pattern>
</defs>
<rect width="300" height="300" fill="linear-gradient(to bottom, #FF9933, #87CEEB)"/>
<g transform="translate(100,150)">
<rect width="60" height="80" rx="30" fill="url(#cactusGradient)"/>
<rect x="25" y="10" width="10" height="20" rx="3" fill="#333"/>
<path d="M-30,40 Q0,0 30,40" stroke="#333" stroke-width="2" fill="none"/>
<g transform="translate(20,50)">
<rect width="20" height="10" rx="5" fill="url(#sunglassesGradient)"/>
<rect x="10" y="-5" width="10" height="20" rx="5" fill="#333"/>
</g>
</g>
<path d="M0,250 Q150,150 300,250" stroke="#FFD700" stroke-width="4" fill="url(#waveGradient)"/>
<g transform="translate(150,200)">
<rect width="100" height="20" rx="10" fill="url(#sandPattern)"/>
<rect x="0" y="20" width="100" height="10" rx="5" fill="#FFD700"/>
</g>
<g transform="translate(200,180)">
<rect width="30" height="40" rx="15" fill="#333"/>
<rect x="15" y="10" width="10" height="20" rx="5" fill="#FFF"/>
</g>
</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:#ff8a00"/>
<stop offset="100%" style="stop-color:#ffdb4d"/>
</linearGradient>
<linearGradient id="sandGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#d4a017"/>
<stop offset="50%" style="stop-color:#ffd700"/>
<stop offset="100%" style="stop-color:#d4a017"/>
</linearGradient>
</defs>
<!-- Sky background -->
<rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
<!-- Sand wave -->
<path d="M0,200 Q150,100 300,200 L300,300 L0,300 Z" fill="url(#sandGradient)"/>
<!-- Cactus body -->
<path d="M140,120 C140,80 160,80 160,120 L160,220 C160,240 140,240 140,220 Z" fill="#2d5a27"/>
<!-- Cactus arms -->
<path d="M160,150 C160,150 180,150 180,170 C180,190 160,190 160,170 Z" fill="#2d5a27"/>
<path d="M140,160 C140,160 120,160 120,180 C120,200 140,200 140,180 Z" fill="#2d5a27"/>
<!-- Sunglasses -->
<path d="M130,130 L170,130" stroke="#000" stroke-width="3"/>
<circle cx="135" cy="135" r="10" fill="#000"/>
<circle cx="165" cy="135" r="10" fill="#000"/>
<!-- Surfboard -->
<ellipse cx="150" cy="220" rx="60" ry="15" fill="#ff6b6b" stroke="#fff" stroke-width="2"/>
<!-- Sand particles -->
<g fill="#ffd700">
<circle cx="50" cy="250" r="2"/>
<circle cx="80" cy="270" r="2"/>
<circle cx="220" cy="260" r="2"/>
<circle cx="250" cy="240" r="2"/>
</g>
<!-- Sun -->
<circle cx="250" cy="50" r="20" fill="#fff"/>
<!-- Cool detail lines -->
<path d="M130,140 L120,145 M170,140 L180,145" stroke="#2d5a27" stroke-width="2"/>
<!-- Motion lines -->
<path d="M40,220 L60,220 M250,220 L270,220" stroke="#fff" stroke-width="2" stroke-dasharray="5,5"/>
</svg>
Judge's Analysis
Player 2's image captures the concept more effectively with a well-defined cactus wearing sunglasses, prominently surfing a sand wave under the sun.
The composition is visually appealing with a vibrant color palette and clear elements.
Player 1's image, while creative, lacks clarity and definition in portraying the cactus and the surfing action.
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
"Snail race with snails wearing racing helmets on a checkered track"
"Astronaut on a unicycle juggling planets in space"
"A penguin juggling flaming snowballs on a unicycle"
"Shoe disco with dancing shoes wearing tiny sunglasses"
"Floating Island with Waterfall Clouds"
"A flamingo skateboarding on a rainbow ramp under a crescent moon"