Creative Challenge
"Purple elephant in space juggling glowing planets"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#stars)" />
<defs>
<pattern id="stars" patternUnits="userSpaceOnUse" width="100" height="100">
<rect x="0" y="0" width="100" height="100" fill="#03003A" />
<circle cx="50" cy="50" r="2" fill="#FFFFFF" />
<circle cx="20" cy="80" r="1" fill="#FFFFFF" />
<circle cx="80" cy="20" r="1" fill="#FFFFFF" />
<circle cx="90" cy="90" r="1" fill="#FFFFFF" />
</pattern>
</defs>
<!-- Elephant -->
<g transform="translate(150, 150)">
<path d="M-20, 0 L 20, 0 L 20, -30 L 0, -50 L -20, -30 Z" fill="#7A288A" />
<path d="M-15, -30 L 15, -30 L 15, -45 L 0, -60 L -15, -45 Z" fill="#9B59B6" />
<circle cx="0" cy="-60" r="10" fill="#F7DC6F" />
<circle cx="0" cy="-60" r="5" fill="#FFFFFF" />
</g>
<!-- Planets -->
<g transform="translate(150, 150)">
<g transform="rotate(30)">
<circle cx="-50" cy="0" r="15" fill="url(#planet1)" />
<circle cx="-50" cy="0" r="10" fill="#FFFFFF" />
</g>
<g transform="rotate(90)">
<circle cx="0" cy="-50" r="15" fill="url(#planet2)" />
<circle cx="0" cy="-50" r="10" fill="#FFFFFF" />
</g>
<g transform="rotate(150)">
<circle cx="50" cy="0" r="15" fill="url(#planet3)" />
<circle cx="50" cy="0" r="10" fill="#FFFFFF" />
</g>
</g>
<!-- Planet gradients -->
<defs>
<radialGradient id="planet1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#FFC107" stop-opacity="1" />
<stop offset="100%" stop-color="#FFA07A" stop-opacity="1" />
</radialGradient>
<radialGradient id="planet2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#8BC34A" stop-opacity="1" />
<stop offset="100%" stop-color="#64DD17" stop-opacity="1" />
</radialGradient>
<radialGradient id="planet3" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#9C27B0" stop-opacity="1" />
<stop offset="100%" stop-color="#BA68C8" stop-opacity="1" />
</radialGradient>
</defs>
<!-- Glow -->
<g transform="translate(150, 150)">
<g transform="rotate(30)">
<circle cx="-50" cy="0" r="20" fill="#FFFFFF" opacity="0.5" />
</g>
<g transform="rotate(90)">
<circle cx="0" cy="-50" r="20" fill="#FFFFFF" opacity="0.5" />
</g>
<g transform="rotate(150)">
<circle cx="50" cy="0" r="20" fill="#FFFFFF" opacity="0.5" />
</g>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background Gradient -->
<defs>
<radialGradient id="bgGradient" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#1a2a6c"/>
<stop offset="50%" stop-color="#b21f1f"/>
<stop offset="100%" stop-color="#fdbb2d"/>
</radialGradient>
<!-- Glow Filter -->
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur stdDeviation="3.5" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<!-- Elephant Gradient -->
<linearGradient id="elephantGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#8e44ad"/>
<stop offset="100%" stop-color="#c298fc"/>
</linearGradient>
</defs>
<!-- Starry Background -->
<rect width="300" height="300" fill="url(#bgGradient)" />
<g fill="white" opacity="0.8">
<circle cx="30" cy="50" r="1.5"/>
<circle cx="80" cy="120" r="1"/>
<circle cx="150" cy="30" r="2"/>
<circle cx="220" cy="80" r="1.5"/>
<circle cx="270" cy="200" r="1"/>
<circle cx="60" cy="250" r="1.5"/>
<circle cx="200" cy="180" r="1"/>
<circle cx="250" cy="60" r="2"/>
<circle cx="100" cy="220" r="1"/>
<circle cx="180" cy="280" r="1.5"/>
</g>
<!-- Purple Elephant -->
<g transform="translate(150, 180)">
<!-- Body -->
<ellipse cx="0" cy="0" rx="40" ry="25" fill="url(#elephantGradient)" stroke="#5e3370" stroke-width="2"/>
<!-- Head -->
<ellipse cx="30" cy="-10" rx="15" ry="12" fill="url(#elephantGradient)" stroke="#5e3370" stroke-width="2"/>
<!-- Ears -->
<path d="M20,-20 Q25,-40 35,-20" fill="url(#elephantGradient)" stroke="#5e3370" stroke-width="2"/>
<path d="M30,-15 Q35,-35 45,-15" fill="url(#elephantGradient)" stroke="#5e3370" stroke-width="2"/>
<!-- Trunk -->
<path d="M45,-10 Q50,10 40,20 Q35,25 30,20" fill="url(#elephantGradient)" stroke="#5e3370" stroke-width="2"/>
<!-- Eyes -->
<circle cx="35" cy="-15" r="2" fill="black"/>
<!-- Legs -->
<rect x="-20" y="20" width="8" height="15" fill="url(#elephantGradient)" stroke="#5e3370" stroke-width="2"/>
<rect x="12" y="20" width="8" height="15" fill="url(#elephantGradient)" stroke="#5e3370" stroke-width="2"/>
<!-- Tail -->
<line x1="-35" y1="0" x2="-45" y2="-10" stroke="#5e3370" stroke-width="2"/>
<circle cx="-45" cy="-10" r="2" fill="#c298fc"/>
</g>
<!-- Glowing Planets -->
<g filter="url(#glow)">
<!-- Planet 1 -->
<circle cx="100" cy="80" r="8" fill="#ff6ec7"/>
<!-- Planet 2 -->
<circle cx="200" cy="130" r="6" fill="#6ec1ff"/>
<!-- Planet 3 -->
<circle cx="250" cy="60" r="10" fill="#ffde59"/>
<!-- Planet 4 -->
<circle cx="80" cy="220" r="7" fill="#a0ff99"/>
</g>
<!-- Trunk Juggling Effect -->
<path d="M40,20 Q60,50 80,80" stroke="#c298fc" stroke-width="2" fill="none" stroke-dasharray="5,5"/>
<path d="M40,20 Q20,50 0,80" stroke="#c298fc" stroke-width="2" fill="none" stroke-dasharray="5,5"/>
<!-- Orbit Lines -->
<circle cx="150" cy="150" r="100" stroke="rgba(255,255,255,0.2)" stroke-width="1" fill="none"/>
<circle cx="150" cy="150" r="130" stroke="rgba(255,255,255,0.1)" stroke-width="1" fill="none"/>
</svg>
Judge's Analysis
Player 2's image better captures the whimsical idea of a 'purple elephant in space juggling glowing planets' with a clear depiction of an elephant and multiple colorful planets.
The use of vibrant colors and dynamic composition enhances the visual appeal and creativity.
In contrast, Player 1's submission is more abstract and less immediately recognizable as fulfilling the prompt.
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
"An octopus juggling flaming swords underwater"
"Transparent jellyfish floating through a starry galaxy"
"Octopus knitting a scarf underwater, surrounded by playful seahorses"
"Two cats fencing with paintbrushes atop a floating book"
"Surrealist portrait: Leonardo da Vinci's face made of floating clock gears"
"Floating city on a giant turtle's back"