Creative Challenge
"A fox wearing a tuxedo, balancing on a unicycle, juggling glowing mushrooms"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="glow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:rgba(255,255,255,0.9);stop-opacity:0.9" />
<stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:0" />
</radialGradient>
<pattern id="tuxedoPattern" patternUnits="userSpaceOnUse" width="10" height="10" patternTransform="rotate(45)">
<rect x="0" y="0" width="10" height="10" fill="#2b2b2e"/>
<rect x="5" y="0" width="5" height="5" fill="#45454a"/>
<rect y="5" width="5" height="5" fill="#45454a"/>
</pattern>
</defs>
<!-- Fox Head -->
<path d="M150,80 Q120,100 115,130 Q150,110 185,130 Q180,100 150,80" fill="#FF4500" />
<circle cx="140" cy="120" r="5" fill="#000" />
<circle cx="160" cy="120" r="5" fill="#000" />
<path d="M150,130 C145,140 155,140 150,130" fill="#DA7D00" />
<!-- Fox Body -->
<path d="M135,130 C130,160 170,160 165,130 Q150,125 135,130" fill="url(#tuxedoPattern)" />
<!-- Unicycle -->
<circle cx="150" cy="200" r="25" fill="none" stroke="#333" stroke-width="4" />
<line x1="150" y1="200" x2="150" y2="230" stroke="#333" stroke-width="4" />
<circle cx="150" cy="230" r="5" fill="#333" />
<!-- Legs -->
<path d="M140,130 Q145,170 145,185 A5,5 0 0,0 150,200" fill="#FF4500" />
<path d="M160,130 Q155,170 155,185 A5,5 0 0,1 150,200" fill="#FF4500" />
<!-- Mushrooms -->
<g transform="translate(120,50)">
<path d="M0,0 C10,-10 30,-10 40,0 C30,10 10,10 0,0" fill="purple" />
<circle cx="20" cy="0" r="5" fill="url(#glow)" />
</g>
<g transform="translate(200,80)">
<path d="M0,0 C10,-10 30,-10 40,0 C30,10 10,10 0,0" fill="red" />
<circle cx="20" cy="0" r="5" fill="url(#glow)" />
</g>
<g transform="translate(160,20)">
<path d="M0,0 C10,-10 30,-10 40,0 C30,10 10,10 0,0" fill="green" />
<circle cx="20" cy="0" r="5" fill="url(#glow)" />
</g>
<g transform="translate(90,70)">
<path d="M0,0 C10,-10 30,-10 40,0 C30,10 10,10 0,0" fill="blue" />
<circle cx="20" cy="0" r="5" fill="url(#glow)" />
</g>
<!-- Fox Tail -->
<path d="M135,140 C110,160 100,190 110,200 Q135,180 150,180" fill="#FF4500" />
<path d="M125,180 C120,170 135,170 135,180" fill="#fff" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="glowGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#fff;stop-opacity:0.8"/>
<stop offset="100%" style="stop-color:#ff6b6b;stop-opacity:0"/>
</radialGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="2" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Unicycle -->
<circle cx="150" cy="250" r="30" fill="none" stroke="#333" stroke-width="4"/>
<rect x="148" y="180" width="4" height="70" fill="#444"/>
<circle cx="150" cy="250" r="5" fill="#666"/>
<!-- Fox Body -->
<path d="M130 180 Q150 160 170 180 L170 200 Q150 220 130 200 Z" fill="#ff7f2a"/>
<path d="M140 140 Q150 130 160 140 L165 180 Q150 190 135 180 Z" fill="#ff7f2a"/>
<!-- Tuxedo -->
<path d="M135 180 Q150 190 165 180 L170 200 Q150 220 130 200 Z" fill="#222"/>
<rect x="145" y="180" width="10" height="20" fill="white"/>
<circle cx="150" cy="185" r="2" fill="black"/>
<!-- Fox Head -->
<path d="M140 140 Q150 130 160 140 L165 150 Q150 160 135 150 Z" fill="#ff7f2a"/>
<path d="M145 135 L155 135 L150 145 Z" fill="white"/>
<circle cx="147" cy="138" r="2" fill="black"/>
<circle cx="153" cy="138" r="2" fill="black"/>
<!-- Fox Ears -->
<path d="M142 135 L138 125 L146 132 Z" fill="#ff7f2a"/>
<path d="M158 135 L162 125 L154 132 Z" fill="#ff7f2a"/>
<!-- Juggling Mushrooms -->
<g filter="url(#glow)">
<circle cx="120" cy="100" r="15" fill="#ff6b6b"/>
<rect x="115" y="105" width="10" height="12" fill="#ff6b6b"/>
<circle cx="180" cy="120" r="15" fill="#64ff64"/>
<rect x="175" y="125" width="10" height="12" fill="#64ff64"/>
<circle cx="150" cy="80" r="15" fill="#6b6bff"/>
<rect x="145" y="85" width="10" height="12" fill="#6b6bff"/>
</g>
<!-- Motion Lines -->
<path d="M120 100 Q150 110 180 120" fill="none" stroke="#ddd" stroke-width="2" stroke-dasharray="5,5"/>
<path d="M180 120 Q150 130 120 100" fill="none" stroke="#ddd" stroke-width="2" stroke-dasharray="5,5"/>
<path d="M150 80 Q180 90 150 130" fill="none" stroke="#ddd" stroke-width="2" stroke-dasharray="5,5"/>
</svg>
Judge's Analysis
Player 2's submission better captures the prompt, effectively depicting the fox in a tuxedo on a unicycle, with a clear representation of juggling glowing mushrooms.
The composition is more coherent and visually appealing, with better technical quality and creativity in illustrating the elements.
Player 1's submission, while creative, lacks clarity in depicting all aspects of the prompt effectively.
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
"Stilt-walking robot in a dessert cafe"
"Tree with clockwork gears for foliage against a full moon"
"An umbrella made of clouds, raining colorful candy drops"
"Juggling octopus wearing neon roller skates"
"Whale painting a starry night sky with its tail"
"Floating enchanted cactus with lunar eyes in a starlit desert"