Creative Challenge
"A neon cactus wearing sunglasses in a desert under a disco ball moon"
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="skyGradient" cx="150" cy="150" r="150" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#1a2a6c" />
<stop offset="100%" stop-color="#b21f1f" />
</radialGradient>
<radialGradient id="moonGradient" cx="200" cy="100" r="50" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#ffffff" />
<stop offset="100%" stop-color="#cccccc" />
</radialGradient>
<pattern id="discoPattern" patternUnits="userSpaceOnUse" width="20" height="20">
<circle cx="10" cy="10" r="1" fill="#ffffff" />
<circle cx="5" cy="5" r="0.5" fill="#ffffff" />
<circle cx="15" cy="15" r="0.5" fill="#ffffff" />
</pattern>
<filter id="neonGlow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur stdDeviation="4" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Sky -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Stars -->
<g fill="white" opacity="0.8">
<circle cx="50" cy="50" r="1.5"/>
<circle cx="80" cy="80" r="1"/>
<circle cx="120" cy="40" r="1.2"/>
<circle cx="160" cy="70" r="1"/>
<circle cx="200" cy="30" r="1.3"/>
<circle cx="250" cy="60" r="0.8"/>
<circle cx="220" cy="90" r="1.1"/>
<circle cx="270" cy="50" r="1"/>
</g>
<!-- Disco Ball Moon -->
<g transform="translate(200,100)">
<circle cx="0" cy="0" r="50" fill="url(#discoPattern)" stroke="url(#moonGradient)" stroke-width="2" filter="url(#neonGlow)" />
<circle cx="0" cy="0" r="48" fill="url(#discoPattern)" stroke="url(#moonGradient)" stroke-width="2" />
<!-- Reflective lines -->
<g stroke="rgba(255,255,255,0.3)" stroke-width="0.5">
<line x1="0" y1="-50" x2="0" y2="50" />
<line x1="-35" y1="-35" x2="35" y2="35" />
<line x1="-50" y1="0" x2="50" y2="0" />
<line x1="-35" y1="35" x2="35" y2="-35" />
</g>
</g>
<!-- Desert -->
<path d="M0,250 Q75,200 150,250 T300,250 L300,300 L0,300 Z" fill="#f4c27b" />
<!-- Cactus -->
<g transform="translate(100,220)" filter="url(#neonGlow)">
<!-- Main stem -->
<path d="M20,0 Q25,-40 20,-80 Q15,-40 20,0 Z" fill="#39FF14" stroke="#00FF7F" stroke-width="2"/>
<!-- Left arm -->
<path d="M20,-40 Q-10,-50 -20,-80 Q-15,-60 -20,-40 Z" fill="#39FF14" stroke="#00FF7F" stroke-width="2"/>
<!-- Right arm -->
<path d="M20,-40 Q50,-50 60,-80 Q55,-60 60,-40 Z" fill="#39FF14" stroke="#00FF7F" stroke-width="2"/>
<!-- Sunglasses -->
<rect x="5" y="-60" width="30" height="10" rx="5" ry="5" fill="#1E90FF" stroke="#FFFFFF" stroke-width="1"/>
<line x1="35" y1="-55" x2="40" y2="-55" stroke="#FFFFFF" stroke-width="2"/>
<rect x="40" y="-60" width="5" height="10" fill="#1E90FF" stroke="#FFFFFF" stroke-width="1"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Desert background -->
<rect width="300" height="300" fill="url(#desertGradient)" />
<defs>
<linearGradient id="desertGradient" x1="0" y1="0" x2="0" y2="300">
<stop offset="0%" stop-color="#1a1a1a" />
<stop offset="100%" stop-color="#4a4a4a" />
</linearGradient>
</defs>
<!-- Disco ball moon -->
<g transform="translate(150,50)">
<circle r="50" fill="url(#moonGradient)" filter="url(#glowEffect)" />
<defs>
<linearGradient id="moonGradient" x1="0" y1="0" x2="100" y2="100">
<stop offset="0%" stop-color="#ffffff" />
<stop offset="100%" stop-color="#888888" />
</linearGradient>
<filter id="glowEffect">
<feGaussianBlur stdDeviation="4" result="glow" />
<feMerge>
<feMergeNode in="glow" />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
</defs>
<!-- Moon surface details -->
<path d="M0,0 L100,0 L50,100 Z" fill="none" stroke="#666" stroke-width="2" />
</g>
<!-- Neon cactus -->
<g transform="translate(150,200)">
<!-- Cactus body -->
<path d="M0,0 L40,0 L40,100 L0,100 Z" fill="url(#cactusGradient)" />
<defs>
<linearGradient id="cactusGradient" x1="0" y1="0" x2="40" y2="100">
<stop offset="0%" stop-color="#00ff00" />
<stop offset="100%" stop-color="#00cc00" />
</linearGradient>
</defs>
<!-- Cactus arms -->
<path d="M20,50 L50,50 L50,150 Z" fill="url(#neonGreen)" />
<path d="M40,50 L80,50 L80,150 Z" fill="url(#neonGreen)" />
<defs>
<linearGradient id="neonGreen" x1="0" y1="0" x2="100" y2="100">
<stop offset="0%" stop-color="#00ff00" />
<stop offset="100%" stop-color="#00cc00" />
</linearGradient>
</defs>
<!-- Sunglasses -->
<rect x="10" y="30" width="60" height="40" fill="url(#sunglassesGradient)" />
<defs>
<linearGradient id="sunglassesGradient" x1="0" y1="0" x2="0" y2="40">
<stop offset="0%" stop-color="#000000" />
<stop offset="100%" stop-color="#333333" />
</linearGradient>
</defs>
<!-- Sunglasses frame -->
<path d="M10,30 L70,30 L70,70 L10,70 Z" fill="none" stroke="#00ffff" stroke-width="3" />
</g>
<!-- Stars -->
<g id="stars">
<circle cx="50" cy="20" r="1" fill="white" opacity="0.8" />
<circle cx="100" cy="30" r="1.5" fill="white" opacity="0.6" />
<circle cx="200" cy="25" r="1" fill="white" opacity="0.8" />
<circle cx="150" cy="40" r="1.2" fill="white" opacity="0.6" />
<circle cx="250" cy="35" r="1" fill="white" opacity="0.8" />
</g>
<!-- Ground details -->
<path d="M0,280 Q150,300 300,280 L300,300 L0,300 Z" fill="#4a4a4a" />
<path d="M50,270 Q60,275 70,270" fill="#666" />
<path d="M200,270 Q210,275 220,270" fill="#666" />
</svg>
Judge's Analysis
Player 1's image features a more recognizable neon cactus with sunglasses and a disco ball moon, adhering closely to the prompt.
The use of colors and shapes effectively captures the whimsical and vibrant essence of the concept.
In contrast, Player 2's submission lacks clarity in representing the elements of the prompt, making it less visually appealing and harder to interpret.
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 flying cat wearing a UFO as a hat, hovering above candy mountains"
"Umbrella growing from a teacup"
"A neon jellyfish orbiting a giant silver apple under a starry sky"
"Flying fish with balloon wings over a cityscape"
"Astronaut penguin juggling planets in space"
"Surreal clock with melting numbers and flying teacup"