Creative Challenge
"An ant carrying a skyscraper across a tightrope."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background Gradient -->
<defs>
<linearGradient id="skyGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#87CEFA"/>
<stop offset="100%" stop-color="#B0E0E6"/>
</linearGradient>
<!-- Skylines pattern for skyscraper -->
<pattern id="windowPattern" width="10" height="10" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="10" height="10" fill="#444"/>
<circle cx="3" cy="3" r="1.5" fill="#FFD700"/>
<circle cx="7" cy="4" r="1" fill="#FFD700"/>
<rect x="2" y="6" width="6" height="2" fill="#222"/>
</pattern>
</defs>
<!-- Sky background -->
<rect width="300" height="300" fill="url(#skyGrad)"/>
<!-- Tightrope -->
<line x1="50" y1="250" x2="250" y2="250" stroke="#8B4513" stroke-width="4" stroke-linecap="round"/>
<!-- Supporting poles -->
<rect x="45" y="250" width="5" height="50" fill="#654321"/>
<rect x="250" y="250" width="5" height="50" fill="#654321"/>
<!-- Ant body -->
<circle cx="150" cy="200" r="10" fill="#000" stroke="#222" stroke-width="1"/>
<!-- Ant head -->
<circle cx="150" cy="190" r="4" fill="#222"/>
<!-- Ant eyes -->
<circle cx="148" cy="188" r="0.5" fill="#fff"/>
<circle cx="152" cy="188" r="0.5" fill="#fff"/>
<!-- Ant antennae -->
<path d="M149,186 Q147,183 146,185" stroke="#222" stroke-width="0.5"/>
<path d="M151,186 Q153,183 154,185" stroke="#222" stroke-width="0.5"/>
<!-- Ant legs -->
<line x1="140" y1="198" x2="130" y2="205" stroke="#222" stroke-width="1"/>
<line x1="160" y1="198" x2="170" y2="205" stroke="#222" stroke-width="1"/>
<line x1="145" y1="202" x2="135" y2="210" stroke="#222" stroke-width="1"/>
<line x1="155" y1="202" x2="165" y2="210" stroke="#222" stroke-width="1"/>
<line x1="139" y1="195" x2="130" y2="188" stroke="#222" stroke-width="1"/>
<line x1="161" y1="195" x2="170" y2="188" stroke="#222" stroke-width="1"/>
<!-- Skyscraper -->
<rect x="180" y="150" width="60" height="100" fill="#6495ED" stroke="#000" stroke-width="0.5"/>
<rect x="180" y="150" width="60" height="100" fill="url(#windowPattern)" opacity="0.8"/>
<!-- Windows pattern overlay for skyscraper -->
<rect x="200" y="170" width="20" height="20" fill="#fff" opacity="0"/>
<!-- Optional shadow for depth -->
<rect x="178" y="148" width="64" height="102" fill="#000" opacity="0.1" rx="2" ry="2"/>
<!-- Additional artistic elements -->
<!-- Light top of skyscraper -->
<polygon points="180,150 210,150 195,130" fill="#FFA07A" opacity="0.7"/>
<!-- The ant is walking across the tightrope, carried a skyscraper -->
<!-- To suggest motion and weight, add subtle lines or shadows -->
<line x1="150" y1="200" x2="195" y2="150" stroke="#444" stroke-width="1" stroke-dasharray="2,2" opacity="0.5"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Sky -->
<rect x="0" y="0" width="300" height="150" fill="#87CEEB" rx="20" />
<!-- Tightrope -->
<line x1="50" y1="100" x2="250" y2="100" stroke="#FFC107" stroke-width="10" stroke-dasharray="10,10" />
<!-- Ant -->
<g transform="translate(150, 90)">
<circle cx="0" cy="0" r="10" fill="#8B4513" />
<circle cx="0" cy="-15" r="5" fill="#8B4513" />
<circle cx="0" cy="15" r="5" fill="#8B4513" />
<path d="M 0,0 L -10,10 L -10,-10 Z" fill="#8B4513" />
</g>
<!-- Skyscraper -->
<g transform="translate(145, 60)">
<rect x="-20" y="-50" width="40" height="90" fill="#444" rx="10" />
<rect x="-30" y="-60" width="60" height="20" fill="#444" rx="10" />
<rect x="-40" y="-70" width="80" height="20" fill="#444" rx="10" />
<rect x="-50" y="-80" width="100" height="20" fill="#444" rx="10" />
<circle cx="0" cy="-90" r="10" fill="#444" />
</g>
<!-- Shadows -->
<g transform="translate(0, 10)">
<circle cx="150" cy="90" r="10" fill="#333" opacity="0.5" />
<rect x="145" y="60" width="10" height="50" fill="#333" rx="5" opacity="0.5" />
</g>
<!-- Highlights -->
<g>
<circle cx="150" cy="90" r="5" fill="#FFD700" />
<circle cx="150" cy="90" r="2" fill="#FFFFFF" />
<rect x="145" y="60" width="10" height="10" fill="#FFD700" rx="5" />
</g>
</svg>
Judge's Analysis
Player 1's submission clearly depicts an ant carrying a skyscraper across a tightrope, adhering closely to the prompt.
The inclusion of the tightrope and the skyscraper, alongside the ant, effectively conveys the concept.
Player 2's entry lacks clarity and does not visually align with the idea of an ant carrying a skyscraper across a tightrope.
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.