Creative Challenge
"Circus elephant balancing on a tightrope, juggling flaming torches in the moonlight"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Gradients -->
<radialGradient id="moonGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FFFACD"/>
<stop offset="100%" stop-color="#F0E68C"/>
</radialGradient>
<linearGradient id="elephantGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#808080"/>
<stop offset="100%" stop-color="#505050"/>
</linearGradient>
<linearGradient id="torchGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#FF4500"/>
<stop offset="100%" stop-color="#FFD700"/>
</linearGradient>
<pattern id="stripedPattern" width="4" height="4" patternUnits="userSpaceOnUse" patternTransform="rotate(45)">
<rect width="2" height="4" transform="translate(0,0)" fill="#FFF"/>
</pattern>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="black"/>
<!-- Moon -->
<circle cx="240" cy="60" r="40" fill="url(#moonGradient)" />
<!-- Tightrope -->
<line x1="20" y1="150" x2="280" y2="150" stroke="#F5F5DC" stroke-width="2" stroke-dasharray="10,5" />
<!-- Elephant body -->
<g id="elephant" transform="translate(150,140) scale(0.8)">
<!-- Body -->
<ellipse cx="0" cy="0" rx="40" ry="25" fill="url(#elephantGradient)" stroke="black" stroke-width="1"/>
<!-- Head -->
<circle cx="45" cy="-10" r="15" fill="url(#elephantGradient)" stroke="black" stroke-width="1"/>
<!-- Trunk -->
<path d="M55,-5 Q70,10 55,15" fill="none" stroke="black" stroke-width="3" stroke-linecap="round"/>
<!-- Ears -->
<ellipse cx="45" cy="-10" rx="10" ry="15" fill="url(#stripedPattern)" transform="rotate(-25 45 -10)" stroke="black" stroke-width="0.5"/>
<ellipse cx="45" cy="-10" rx="10" ry="15" fill="url(#stripedPattern)" transform="rotate(25 45 -10)" stroke="black" stroke-width="0.5"/>
<!-- Legs -->
<rect x="-30" y="15" width="10" height="15" fill="url(#elephantGradient)" stroke="black" stroke-width="1"/>
<rect x="20" y="15" width="10" height="15" fill="url(#elephantGradient)" stroke="black" stroke-width="1"/>
<!-- Balancing tail -->
<path d="M-40,0 Q-60,-5 -50,10" fill="none" stroke="black" stroke-width="2" stroke-linecap="round"/>
</g>
<!-- Flaming torches (juggling) -->
<!-- Torch 1 -->
<g id="torch1">
<line x1="0" y1="0" x2="0" y2="20" stroke="#8B4513" stroke-width="3" stroke-linecap="round"/>
<ellipse cx="0" cy="0" rx="5" ry="7" fill="url(#torchGradient)" stroke="orangered" stroke-width="1"/>
<path d="M-5,0 C-8,-10,8,-10,5,0" fill="url(#torchGradient)" opacity="0.8"/>
</g>
<!-- Torch 2 -->
<g id="torch2" transform="rotate(30)">
<line x1="0" y1="0" x2="0" y2="20" stroke="#8B4513" stroke-width="3" stroke-linecap="round"/>
<ellipse cx="0" cy="0" rx="5" ry="7" fill="url(#torchGradient)" stroke="orangered" stroke-width="1"/>
<path d="M-5,0 C-8,-10,8,-10,5,0" fill="url(#torchGradient)" opacity="0.8"/>
</g>
<!-- Torch 3 -->
<g id="torch3" transform="rotate(-30)">
<line x1="0" y1="0" x2="0" y2="20" stroke="#8B4513" stroke-width="3" stroke-linecap="round"/>
<ellipse cx="0" cy="0" rx="5" ry="7" fill="url(#torchGradient)" stroke="orangered" stroke-width="1"/>
<path d="M-5,0 C-8,-10,8,-10,5,0" fill="url(#torchGradient)" opacity="0.8"/>
</g>
<!-- Position the torches around the elephant's trunk -->
<g transform="translate(60,45)">
<use href="#torch1" transform="translate(0,0)" />
<use href="#torch2" transform="translate(-10,10)" />
<use href="#torch3" transform="translate(10,10)" />
</g>
<!-- Additional artistic flare: stars -->
<g fill="white">
<circle cx="30" cy="30" r="1"/>
<circle cx="60" cy="20" r="0.8"/>
<circle cx="100" cy="40" r="1.2"/>
<circle cx="200" cy="30" r="0.9"/>
<circle cx="260" cy="50" r="1"/>
<circle cx="220" cy="90" r="0.8"/>
<circle cx="280" cy="20" r="1"/>
</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="#0b0f3c"/>
<stop offset="100%" stop-color="#2a185c"/>
</linearGradient>
<radialGradient id="moonlight" cx="85%" cy="15%" r="80%">
<stop offset="10%" stop-color="#ffffff20"/>
<stop offset="100%" stop-color="#ffffff00"/>
</radialGradient>
<linearGradient id="torch" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#ff6b00"/>
<stop offset="40%" stop-color="#ffd700"/>
<stop offset="100%" stop-color="#ff000070"/>
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#sky)"/>
<circle cx="255" cy="45" r="25" fill="#f6f1d5" filter="url(#glow)"/>
<!-- Stars -->
<g opacity="0.8">
<circle cx="50" cy="90" r="1.2" fill="white"/>
<circle cx="140" cy="30" r="1.5" fill="#aaf"/>
<circle cx="220" cy="120" r="1" fill="white"/>
<circle cx="80" cy="200" r="2" fill="#aaf"/>
</g>
<!-- Tightrope -->
<path d="M50 210 L250 180" stroke="url(#silver)" stroke-width="1.5" stroke-linecap="round"/>
<!-- Elephant -->
<g transform="translate(150 170) scale(0.8)">
<path d="M0 0Q-40 -30 -60 20Q-80 50 -40 80L0 50" fill="#5e5e6f"/>
<ellipse cx="0" cy="-10" rx="50" ry="60" fill="#4a4a5a"/>
<path d="M30 -40Q50 -60 70 -40L50 0" fill="#4a4a5a"/>
<circle cx="-20" cy="-40" r="15" fill="white"/>
<circle cx="-18" cy="-38" r="6" fill="#333"/>
</g>
<!-- Torches -->
<g transform="translate(150 120)">
<g transform="rotate(-15)">
<path d="M-50 20 l8 -40 8 40" fill="url(#torch)"/>
<rect x="-4" y="-20" width="8" height="30" fill="#654321"/>
</g>
<g transform="rotate(5)">
<path d="M0 -10 l8 -40 8 40" fill="url(#torch)"/>
<rect x="-4" y="-30" width="8" height="30" fill="#654321"/>
</g>
<g transform="rotate(25)">
<path d="M50 0 l8 -40 8 40" fill="url(#torch)"/>
<rect x="46" y="-20" width="8" height="30" fill="#654321"/>
</g>
</g>
<!-- Moonlight overlay -->
<rect width="300" height="300" fill="url(#moonlight)"/>
</svg>
Judge's Analysis
Player 2's submission captures the dynamic action and creativity of the prompt with the elephant juggling flaming torches in front of the moon.
The use of color and composition enhances the visual appeal, while the depiction of movement is more engaging.
In contrast, Player 1's image lacks detail and dynamism, making it less effective in portraying the idea.
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
"A cactus wearing a bowtie under a disco ball."
"An astronaut playing chess with an octopus on the moon."
"Surreal clock melting on an ice cream cone"