Creative Challenge
"Moonlit elephant atop a sea of floating candles"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="moonGradient">
<stop offset="0%" stop-color="#FFFFFF"/>
<stop offset="100%" stop-color="#FFD700"/>
</radialGradient>
<linearGradient id="skyGradient">
<stop offset="0%" stop-color="#001A33"/>
<stop offset="100%" stop-color="#004A7F"/>
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)"/>
<!-- Moon -->
<circle cx="280" cy="80" r="30" fill="url(#moonGradient)" filter="url(#glow)"/>
<circle cx="270" cy="70" r="5" fill="#FFF"/>
<circle cx="290" cy="90" r="5" fill="#FFF"/>
<!-- Elephant -->
<g transform="translate(150,180)">
<path d="M0,0 L50,0 Q55,-5 60,-10 L60,-20 Q65,-25 60,-30 L40,-30 Q35,-25 30,-20 L20,-10 Q15,-5 10,0 L0,0" fill="#FFA07A"/>
<path d="M0,0 L-30,20 Q-40,25 -30,30 L0,40 Q30,30 30,20 L0,0" fill="#FFA07A"/>
<rect x="-15" y="-10" width="30" height="20" rx="10" fill="#FFA07A"/>
<circle cx="-20" cy="-15" r="10" fill="#FFD700" filter="url(#glow)"/>
</g>
<!-- Candle Sea -->
<g filter="url(#glow)">
<circle cx="100" cy="250" r="10" fill="#FFD700"/>
<circle cx="200" cy="230" r="12" fill="#FFD700"/>
<circle cx="50" cy="220" r="15" fill="#FFD700"/>
<circle cx="250" cy="240" r="8" fill="#FFD700"/>
<circle cx="180" cy="210" r="14" fill="#FFD700"/>
</g>
<!-- Rays -->
<g opacity="0.5">
<rect x="260" y="60" width="20" height="40" rx="10" fill="url(#moonGradient)" filter="url(#glow)"/>
<rect x="240" y="40" width="20" height="60" rx="10" fill="url(#moonGradient)" filter="url(#glow)"/>
<rect x="220" y="20" width="20" height="80" rx="10" fill="url(#moonGradient)" filter="url(#glow)"/>
</g>
<!-- Stars -->
<g opacity="0.3">
<circle cx="50" cy="50" r="1" fill="#FFF"/>
<circle cx="150" cy="40" r="1.5" fill="#FFF"/>
<circle cx="250" cy="60" r="1" fill="#FFF"/>
<circle cx="100" cy="80" r="1.2" fill="#FFF"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="moonGradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#f0e68c" />
<stop offset="100%" stop-color="#fffacd" />
</radialGradient>
<linearGradient id="waveGradient" gradientTransform="rotate(90)">
<stop offset="0%" stop-color="#4b6cb7" />
<stop offset="100%" stop-color="#182848" />
</linearGradient>
<pattern id="candleFlame" patternUnits="userSpaceOnUse" width="10" height="20">
<circle cx="5" cy="5" r="5" fill="#ffa07a" />
<circle cx="5" cy="5" r="3" fill="#ff4500" />
</pattern>
</defs>
<rect width="100%" height="100%" fill="url(#waveGradient)" />
<g transform="translate(150,70)">
<circle r="30" fill="url(#moonGradient)" />
</g>
<g transform="translate(150,150)">
<path d="M0,0 C-10,-10 -30,-20 -40,-10 C-45,-5 -45,5 -40,10 C-30,20 -10,20 0,10 C10,20 30,20 40,10 C45,5 45,-5 40,-10 C30,-20 10,-10 0,0" fill="#708090" />
<ellipse cx="0" cy="0" rx="35" ry="18" fill="#2f4f4f" />
</g>
<g transform="translate(120,150)">
<rect x="-5" y="15" width="10" height="30" fill="#8b4513" />
<rect x="-5" y="0" width="10" height="15" fill="url(#candleFlame)" />
</g>
<g transform="translate(180,150)">
<rect x="-5" y="15" width="10" height="30" fill="#8b4513" />
<rect x="-5" y="0" width="10" height="15" fill="url(#candleFlame)" />
</g>
<g transform="translate(90,170)">
<rect x="-5" y="15" width="10" height="30" fill="#8b4513" />
<rect x="-5" y="0" width="10" height="15" fill="url(#candleFlame)" />
</g>
<g transform="translate(210,170)">
<rect x="-5" y="15" width="10" height="30" fill="#8b4513" />
<rect x="-5" y="0" width="10" height="15" fill="url(#candleFlame)" />
</g>
<g transform="translate(150,190)">
<rect x="-5" y="15" width="10" height="30" fill="#8b4513" />
<rect x="-5" y="0" width="10" height="15" fill="url(#candleFlame)" />
</g>
<g transform="translate(150,110)">
<circle r="3" fill="#f0e68c" />
</g>
</svg>
Judge's Analysis
Player 2's image better adheres to the prompt with a clear depiction of an elephant figure under a moon and surrounded by candle-like forms.
The composition is more structured and visually appealing, with a balanced arrangement of elements.
Player 1's image lacks clarity and coherence in representing the prompt, with abstract shapes that do not clearly convey the intended scene.
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 wearing a crown juggling teacups"
"Surreal watermelon hot air balloon over a desert"
"Surreal cityscape with buildings shaped like vegetables"
"Flying octopus delivering mail in a steampunk city"
"Giraffe on a unicycle juggling flamingos in the desert"
"Bicycle-riding octopus juggling flaming torches"