Creative Challenge
"Dancing cactus with maracas under a disco ball"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#2a2a72" />
<!-- Disco ball -->
<circle cx="150" cy="70" r="60" fill="silver" />
<circle cx="150" cy="70" r="45" fill="rgba(255,255,255,0.9)" />
<circle cx="150" cy="70" r="30" fill="rgba(255,255,255,0.7)" />
<circle cx="150" cy="70" r="15" fill="rgba(255,255,255,0.5)" />
<!-- Cactus body -->
<path d="M120,150 L180,150 L180,250 Q150,270 120,250" fill="#62b957" />
<!-- Cactus arms -->
<path d="M120,180 Q110,190 120,200" fill="#62b957" />
<path d="M180,180 Q190,190 180,200" fill="#62b957" />
<!-- Cactus decoration -->
<circle cx="150" cy="160" r="10" fill="#ed6663" />
<circle cx="135" cy="180" r="8" fill="#ed6663" />
<circle cx="165" cy="180" r="8" fill="#ed6663" />
<!-- Cactus pot -->
<path d="M130,250 L170,250 Q180,250 180,240 L120,240 Q120,250 130,250" fill="#d69a57" />
<!-- Maracas -->
<ellipse cx="90" cy="220" rx="20" ry="50" fill="#f4d35e" transform="rotate(-30 90 220)" />
<ellipse cx="210" cy="220" rx="20" ry="50" fill="#f4d35e" transform="rotate(30 210 220)" />
<!-- Maracas decorations -->
<circle cx="90" cy="220" r="12" fill="#f68e5a" />
<circle cx="210" cy="220" r="12" fill="#f68e5a" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="discoGlow" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ff00ff;stop-opacity:0.8"/>
<stop offset="100%" style="stop-color:#00ffff;stop-opacity:0.8"/>
</linearGradient>
<radialGradient id="discoBall" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#ffffff"/>
<stop offset="70%" style="stop-color:#dedede"/>
<stop offset="100%" style="stop-color:#a0a0a0"/>
</radialGradient>
<pattern id="discoPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="2" fill="white" opacity="0.5"/>
</pattern>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#1a0033"/>
<!-- Disco lights -->
<circle cx="150" cy="60" r="100" fill="url(#discoGlow)" opacity="0.3">
<animate attributeName="opacity" values="0.3;0.6;0.3" dur="2s" repeatCount="indefinite"/>
</circle>
<!-- Disco ball -->
<circle cx="150" cy="60" r="30" fill="url(#discoBall)"/>
<circle cx="150" cy="60" r="30" fill="url(#discoPattern)">
<animateTransform attributeName="transform" type="rotate" from="0 150 60" to="360 150 60" dur="4s" repeatCount="indefinite"/>
</circle>
<!-- Cactus body -->
<path d="M140 180 Q150 120 160 180" fill="#2d5a27" stroke="#1e3d1a" stroke-width="2">
<animate attributeName="d" values="M140 180 Q150 120 160 180;M140 180 Q150 130 160 180;M140 180 Q150 120 160 180" dur="0.5s" repeatCount="indefinite"/>
</path>
<path d="M130 160 Q110 140 120 120" fill="#2d5a27" stroke="#1e3d1a" stroke-width="2"/>
<path d="M170 160 Q190 140 180 120" fill="#2d5a27" stroke="#1e3d1a" stroke-width="2"/>
<!-- Cactus spines -->
<g stroke="#594321" stroke-width="1">
<line x1="145" y1="150" x2="140" y2="145"/>
<line x1="155" y1="160" x2="160" y2="155"/>
<line x1="150" y1="140" x2="145" y2="135"/>
</g>
<!-- Maracas -->
<g transform="rotate(30 120 170)">
<ellipse cx="120" cy="170" rx="15" ry="20" fill="#ff4d4d">
<animate attributeName="ry" values="20;22;20" dur="0.25s" repeatCount="indefinite"/>
</ellipse>
<rect x="118" y="190" width="4" height="20" fill="#8b4513"/>
</g>
<g transform="rotate(-30 180 170)">
<ellipse cx="180" cy="170" rx="15" ry="20" fill="#ffff4d">
<animate attributeName="ry" values="20;22;20" dur="0.25s" repeatCount="indefinite"/>
</ellipse>
<rect x="178" y="190" width="4" height="20" fill="#8b4513"/>
</g>
<!-- Dance floor -->
<rect x="50" y="220" width="200" height="60" fill="#333" opacity="0.7"/>
<path d="M50 220 L250 220 L200 280 L100 280 Z" fill="#666" opacity="0.3"/>
<!-- Sparkles -->
<g fill="white">
<circle cx="100" cy="100" r="2">
<animate attributeName="opacity" values="0;1;0" dur="1s" repeatCount="indefinite"/>
</circle>
<circle cx="200" cy="150" r="2">
<animate attributeName="opacity" values="0;1;0" dur="1.5s" repeatCount="indefinite"/>
</circle>
<circle cx="80" cy="180" r="2">
<animate attributeName="opacity" values="0;1;0" dur="0.7s" repeatCount="indefinite"/>
</circle>
</g>
</svg>
Judge's Analysis
Player 2's image captures the prompt more effectively by incorporating a lively atmosphere with a vibrant disco ball and maracas.
The cactus is well-defined and the composition is visually engaging.
Player 1's submission is simpler and less dynamic, missing the energetic feel of a dancing scene.
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
"Frog in a tuxedo playing a tiny trumpet under a starry sky"
"Giraffe with a fishbowl necktie"
"A giraffe peeking through a keyhole into a treasure-filled room"
"Lemon-shaped UFO over a desert cactus"
"Bioluminescent jellyfish floating in a forest"
"A surreal garden with levitating teacups and luminous jellyfish"