Creative Challenge
"A cactus wearing a top hat, blowing bubbles in the desert"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Desert Background -->
<rect x="0" y="0" width="300" height="300" fill="#F5F5DC" rx="20" />
<linearGradient id="desert-sun" x1="0" y1="0" x2="0" y2="100%" spreadMethod="reflect">
<stop offset="0" stop-color="#FFC080" />
<stop offset="1" stop-color="#FFA07A" />
</linearGradient>
<rect x="0" y="0" width="300" height="300" fill="url(#desert-sun)" rx="20" opacity="0.5" />
<!-- Cactus -->
<g transform="translate(150, 120)">
<circle cx="0" cy="0" r="30" fill="#8B9467" />
<circle cx="0" cy="20" r="20" fill="#8B9467" />
<circle cx="0" cy="40" r="10" fill="#8B9467" />
<circle cx="0" cy="60" r="5" fill="#8B9467" />
<path d="M -10 60 L 10 60 L 0 70 Z" fill="#8B9467" />
</g>
<!-- Top Hat -->
<g transform="translate(150, 70)">
<rect x="-20" y="-20" width="40" height="40" fill="#000" rx="5" />
<rect x="-25" y="-25" width="50" height="50" fill="#fff" rx="10" />
<path d="M -30 -25 L 30 -25 L 0 -35 Z" fill="#fff" />
</g>
<!-- Bubbles -->
<g id="bubbles">
<circle cx="150" cy="100" r="10" fill="#fff" opacity="0.5" />
<circle cx="170" cy="90" r="15" fill="#fff" opacity="0.5" />
<circle cx="130" cy="110" r="12" fill="#fff" opacity="0.5" />
<circle cx="190" cy="120" r="8" fill="#fff" opacity="0.5" />
<circle cx="160" cy="130" r="18" fill="#fff" opacity="0.5" />
</g>
<!-- Bubble Highlights -->
<use xlink:href="#bubbles" transform="translate(1, -1)" fill="#fff" opacity="0.8" />
<!-- Bubble Shadows -->
<use xlink:href="#bubbles" transform="translate(2, 2)" fill="#000" opacity="0.2" />
<!-- Cactus Shadow -->
<g transform="translate(150, 120)">
<circle cx="0" cy="0" r="30" fill="#000" opacity="0.2" />
<circle cx="0" cy="20" r="20" fill="#000" opacity="0.2" />
<circle cx="0" cy="40" r="10" fill="#000" opacity="0.2" />
<circle cx="0" cy="60" r="5" fill="#000" opacity="0.2" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="sky" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#ffd89b"/>
<stop offset="100%" stop-color="#19547b"/>
</linearGradient>
<radialGradient id="bubble" cx="50%" cy="50%" r="50%" fx="30%" fy="30%">
<stop offset="0%" stop-color="#ffffff88"/>
<stop offset="100%" stop-color="#00b4d888"/>
</radialGradient>
<filter id="shadow">
<feDropShadow dx="2" dy="4" stdDeviation="3" flood-color="#5a3d1a"/>
</filter>
</defs>
<rect width="300" height="300" fill="url(#sky)"/>
<!-- Desert dunes -->
<path d="M0 220 Q75 200 150 230 T300 210 L300 300 0 300" fill="#e1b382" filter="url(#shadow)"/>
<path d="M0 250 Q100 230 200 260 T300 240 L300 300 0 300" fill="#d4a373"/>
<!-- Cactus body -->
<g transform="translate(150 160)">
<path d="M-30 0 Q0 -80 30 0 L20 140 Q0 160 -20 140 Z" fill="#2d5a27"/>
<path d="M-25 0 Q0 -70 25 0 L15 130 Q0 150 -15 130 Z" fill="#3c763d"/>
<ellipse cx="0" cy="-15" rx="15" ry="25" fill="#3c763d"/>
<!-- Arms -->
<path d="M-60 50 Q-90 30 -100 80 L-80 100" stroke="#2d5a27" stroke-width="12" fill="none"/>
<path d="M60 40 Q90 20 110 70 L90 90" stroke="#2d5a27" stroke-width="12" fill="none"/>
</g>
<!-- Top hat -->
<g transform="translate(135 85)">
<rect x="-25" y="-40" width="50" height="40" rx="5" fill="#191516"/>
<rect x="-30" y="-5" width="60" height="15" rx="7" fill="#2a1e23"/>
<path d="M-15 -40 Q0 -50 15 -40" stroke="#6a1b9a" stroke-width="4" fill="none"/>
</g>
<!-- Bubbles -->
<g transform="translate(200 120)">
<circle cx="0" cy="0" r="20" fill="url(#bubble)"/>
<path d="M-5 -5 Q0 -15 5 -5" fill="#ffffff88"/>
<animateTransform attributeName="transform" type="translate" values="200,120; 220,80; 240,40" dur="4s" repeatCount="indefinite"/>
</g>
<g transform="translate(180 160)">
<circle cx="0" cy="0" r="15" fill="url(#bubble)"/>
<path d="M-3 -3 Q0 -10 3 -3" fill="#ffffff88"/>
<animateTransform attributeName="transform" type="translate" values="180,160; 190,130; 210,100" dur="3s" repeatCount="indefinite"/>
</g>
<!-- Sun rays -->
<g transform="translate(50 50)">
<circle cx="0" cy="0" r="20" fill="#ffd700"/>
<g transform="rotate(0)">
<rect x="-2" y="-30" width="4" height="20" rx="2" fill="#ffd700" transform="rotate(45)"/>
</g>
<g transform="rotate(45)">
<rect x="-2" y="-30" width="4" height="20" rx="2" fill="#ffd700" transform="rotate(45)"/>
</g>
</g>
</svg>
Judge's Analysis
Player 2's submission effectively captures the whimsical concept of a cactus wearing a top hat and blowing bubbles in the desert.
The image is technically well-executed with a clear depiction of the scene and a cohesive color palette that enhances the desert atmosphere.
In contrast, Player 1's submission lacks clarity and detail, making it difficult to discern the elements described in 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.