Creative Challenge
"A cat balancing on a tightrope over a cityscape, juggling teacups"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Cityscape -->
<rect x="0" y="150" width="300" height="150" fill="#444" rx="10" />
<g transform="translate(0, 150)">
<rect x="20" y="20" width="50" height="100" fill="#666" rx="5" />
<rect x="80" y="40" width="30" height="80" fill="#777" rx="5" />
<rect x="120" y="10" width="60" height="120" fill="#888" rx="5" />
<rect x="200" y="30" width="40" height="90" fill="#999" rx="5" />
</g>
<!-- Tightrope -->
<line x1="50" y1="150" x2="250" y2="150" stroke="#ccc" stroke-width="5" />
<!-- Cat -->
<g transform="translate(150, 120)">
<ellipse cx="0" cy="0" rx="20" ry="15" fill="#ff9800" />
<ellipse cx="0" cy="30" rx="15" ry="10" fill="#ff9800" />
<rect x="-10" y="40" width="20" height="20" fill="#ff9800" rx="5" />
<path d="M -10 60 C -15 70 -10 80 0 80 C 10 80 15 70 10 60 Z" fill="#ff9800" />
<circle cx="5" cy="50" r="5" fill="#fff" />
<circle cx="-5" cy="50" r="5" fill="#fff" />
</g>
<!-- Teacups -->
<g transform="translate(120, 90)">
<ellipse cx="0" cy="0" rx="10" ry="8" fill="#fff" stroke="#ccc" stroke-width="2" />
<path d="M -5 10 C -10 15 -5 20 0 20 C 5 20 10 15 5 10 Z" fill="#fff" stroke="#ccc" stroke-width="2" />
</g>
<g transform="translate(180, 80)">
<ellipse cx="0" cy="0" rx="10" ry="8" fill="#fff" stroke="#ccc" stroke-width="2" />
<path d="M -5 10 C -10 15 -5 20 0 20 C 5 20 10 15 5 10 Z" fill="#fff" stroke="#ccc" stroke-width="2" />
</g>
<g transform="translate(150, 60)">
<ellipse cx="0" cy="0" rx="10" ry="8" fill="#fff" stroke="#ccc" stroke-width="2" />
<path d="M -5 10 C -10 15 -5 20 0 20 C 5 20 10 15 5 10 Z" fill="#fff" stroke="#ccc" stroke-width="2" />
</g>
<!-- Gradients and shadows -->
<defs>
<linearGradient id="cityGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#555" />
<stop offset="1" stop-color="#333" />
</linearGradient>
<linearGradient id="tightropeGradient" x1="0" y1="0" x2="1" y2="0">
<stop offset="0" stop-color="#ddd" />
<stop offset="1" stop-color="#ccc" />
</linearGradient>
<filter id="shadow">
<feGaussianBlur in="SourceGraphic" stdDeviation="2" />
<feOffset dx="2" dy="2" />
<feMerge>
<feMergeNode />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
</defs>
<rect x="0" y="150" width="300" height="150" fill="url(#cityGradient)" rx="10" />
<line x1="50" y1="150" x2="250" y2="150" stroke="url(#tightropeGradient)" stroke-width="5" filter="url(#shadow)" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#87CEFA"/>
<stop offset="100%" stop-color="#1E90FF"/>
</linearGradient>
<linearGradient id="buildingGradient" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" stop-color="#FFD700"/>
<stop offset="100%" stop-color="#FFA500"/>
</linearGradient>
<linearGradient id="catGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#F0E68C"/>
<stop offset="100%" stop-color="#FFDAB9"/>
</linearGradient>
<linearGradient id="teacupGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#FAEBD7"/>
<stop offset="100%" stop-color="#FFE4C4"/>
</linearGradient>
</defs>
<rect width="100%" height="100%" fill="url(#skyGradient)"/>
<g transform="translate(0,150)">
<path d="M0,0 h300" stroke="#8B4513" stroke-width="2" fill="none"/>
</g>
<g transform="translate(100,250)">
<polygon points="50,0 0,50 100,50" fill="url(#buildingGradient)"/>
</g>
<g transform="translate(150,250)">
<polygon points="50,0 0,50 100,50" fill="url(#buildingGradient)"/>
</g>
<g transform="translate(200,250)">
<polygon points="50,0 0,50 100,50" fill="url(#buildingGradient)"/>
</g>
<g transform="translate(120,100)">
<circle cx="20" cy="20" r="20" fill="url(#catGradient)"/>
<ellipse cx="30" cy="20" rx="10" ry="5" fill="#000000"/>
<ellipse cx="10" cy="20" rx="10" ry="5" fill="#000000"/>
<path d="M10,30 Q20,35 30,30" stroke="#000000" stroke-width="2" fill="none"/>
<path d="M0,20 Q10,25 20,20" stroke="#000000" stroke-width="2" fill="none"/>
<path d="M40,20 Q30,25 20,20" stroke="#000000" stroke-width="2" fill="none"/>
</g>
<g transform="translate(140,120)">
<circle cx="15" cy="15" r="15" fill="url(#teacupGradient)"/>
<ellipse cx="15" cy="15" rx="15" ry="5" fill="#FFFFFF"/>
<circle cx="15" cy="15" r="5" fill="#000000"/>
</g>
<g transform="translate(110,120)">
<circle cx="15" cy="15" r="15" fill="url(#teacupGradient)"/>
<ellipse cx="15" cy="15" rx="15" ry="5" fill="#FFFFFF"/>
<circle cx="15" cy="15" r="5" fill="#000000"/>
</g>
<g transform="translate(170,120)">
<circle cx="15" cy="15" r="15" fill="url(#teacupGradient)"/>
<ellipse cx="15" cy="15" rx="15" ry="5" fill="#FFFFFF"/>
<circle cx="15" cy="15" r="5" fill="#000000"/>
</g>
</svg>
Judge's Analysis
Player 2's image better captures the idea of 'A cat balancing on a tightrope over a cityscape, juggling teacups'.
The composition shows a clear depiction of a cat-like figure on a tightrope with a cityscape below, which aligns more closely with the prompt.
Player 1's image, while creative, lacks the elements that directly relate to the prompt such as the tightrope, cityscape, or juggling teacups.
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
"Parrot wearing a detective hat, solving a mystery at a jungle library"
"Cactus playing electric guitar under a disco ball"
"Fish with an umbrella in a desert storm"
"Cat surfing on a rainbow wave under a candy sky"
"An ant riding a unicycle on a tightrope under a crescent moon"
"Floating octopus with hot air balloon hat over a cityscape"