Creative Challenge
"Neon cactus in a disco dance-off with a robot"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<radialGradient id="bggrad" cx="50%" cy="50%" r="75%">
<stop offset="0%" style="stop-color:#1a0033; stop-opacity:1" />
<stop offset="100%" style="stop-color:#000000; stop-opacity:1" />
</radialGradient>
<linearGradient id="neonCactusGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#00ffcc; stop-opacity:1" />
<stop offset="100%" style="stop-color:#ff00ff; stop-opacity:1" />
</linearGradient>
<linearGradient id="robotGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#ffea00; stop-opacity:1" />
<stop offset="100%" style="stop-color:#e600e6; stop-opacity:1" />
</linearGradient>
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur stdDeviation="3" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#bggrad)"/>
<!-- Disco Ball and Beams -->
<g id="discoBall" filter="url(#glow)">
<circle cx="75" cy="50" r="15" fill="url(#robotGradient)" stroke="#ffffff" stroke-width="2"/>
<line x1="75" y1="50" x2="75" y2="20" stroke="#ffffff" stroke-width="2"/>
<line x1="75" y1="50" x2="95" y2="30" stroke="#ffffff" stroke-width="2"/>
<line x1="75" y1="50" x2="55" y2="30" stroke="#ffffff" stroke-width="2"/>
<line x1="75" y1="50" x2="90" y2="60" stroke="#ffffff" stroke-width="2"/>
<line x1="75" y1="50" x2="60" y2="65" stroke="#ffffff" stroke-width="2"/>
</g>
<!-- Neon Cactus -->
<g id="cactus" filter="url(#glow)">
<path d="M150,210 L150,100" stroke="url(#neonCactusGradient)" stroke-width="6" stroke-linecap="round" fill="none"/>
<path d="M150,170 C130,160 120,140 130,130" stroke="url(#neonCactusGradient)" stroke-width="6" stroke-linecap="round" fill="none"/>
<path d="M150,130 C170,120 180,100 170,90" stroke="url(#neonCactusGradient)" stroke-width="6" stroke-linecap="round" fill="none"/>
<circle cx="150" cy="200" r="2" fill="url(#neonCactusGradient)"/>
<circle cx="150" cy="180" r="2" fill="url(#neonCactusGradient)"/>
<circle cx="150" cy="160" r="2" fill="url(#neonCactusGradient)"/>
</g>
<!-- Dancing Robot -->
<g id="robot" filter="url(#glow)">
<rect x="200" y="60" width="40" height="40" rx="5" ry="5" fill="url(#robotGradient)" stroke="#ffffff" stroke-width="2"/>
<circle cx="215" cy="75" r="3" fill="#000000"/>
<circle cx="235" cy="75" r="3" fill="#000000"/>
<rect x="190" y="100" width="60" height="50" fill="url(#robotGradient)" stroke="#ffffff" stroke-width="2"/>
<line x1="190" y1="110" x2="170" y2="90" stroke="url(#robotGradient)" stroke-width="4" stroke-linecap="round"/>
<line x1="250" y1="110" x2="270" y2="90" stroke="url(#robotGradient)" stroke-width="4" stroke-linecap="round"/>
<line x1="210" y1="150" x2="210" y2="170" stroke="url(#robotGradient)" stroke-width="4" stroke-linecap="round"/>
<line x1="230" y1="150" x2="230" y2="170" stroke="url(#robotGradient)" stroke-width="4" stroke-linecap="round"/>
</g>
<!-- Disco Lights -->
<g id="discoLights" filter="url(#glow)">
<circle cx="80" cy="260" r="4" fill="#ff00ff" opacity="0.8"/>
<circle cx="220" cy="270" r="4" fill="#00ffff" opacity="0.8"/>
<circle cx="140" cy="280" r="4" fill="#ffff00" opacity="0.8"/>
<circle cx="260" cy="240" r="3" fill="#ff6600" opacity="0.8"/>
<circle cx="40" cy="230" r="3" fill="#66ff66" opacity="0.8"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Disco Background -->
<defs>
<radialGradient id="discoFloor" cx="50%" cy="80%" r="80%" fx="50%" fy="80%">
<stop offset="0%" stop-color="#550066" />
<stop offset="100%" stop-color="#110022" />
</radialGradient>
<radialGradient id="discoGlow" cx="50%" cy="20%" r="50%" fx="50%" fy="20%">
<stop offset="0%" stop-color="#FF00FF" stop-opacity="0.4" />
<stop offset="100%" stop-color="#000000" stop-opacity="0" />
</radialGradient>
<pattern id="discoPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="20" height="20" fill="#220033" />
<circle cx="10" cy="10" r="3" fill="#FF00FF" opacity="0.2" />
</pattern>
<filter id="neonGlow" x="-20%" y="-20%" width="140%" height="140%">
<feGaussianBlur in="SourceGraphic" stdDeviation="2" result="blur" />
<feFlood flood-color="#00FFAA" flood-opacity="0.8" result="color" />
<feComposite in="color" in2="blur" operator="in" result="glow" />
<feComposite in="glow" in2="SourceGraphic" operator="over" />
</filter>
<filter id="robotGlow" x="-20%" y="-20%" width="140%" height="140%">
<feGaussianBlur in="SourceGraphic" stdDeviation="2" result="blur" />
<feFlood flood-color="#00AAFF" flood-opacity="0.8" result="color" />
<feComposite in="color" in2="blur" operator="in" result="glow" />
<feComposite in="glow" in2="SourceGraphic" operator="over" />
</filter>
<linearGradient id="cactusGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#00FFAA" />
<stop offset="100%" stop-color="#00AA77" />
</linearGradient>
<linearGradient id="robotGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#CCCCCC" />
<stop offset="100%" stop-color="#777777" />
</linearGradient>
<clipPath id="danceFloor">
<ellipse cx="150" cy="240" rx="140" ry="40" />
</clipPath>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#110022" />
<!-- Disco Lights -->
<circle cx="150" cy="50" r="120" fill="url(#discoGlow)" />
<circle cx="70" cy="30" r="15" fill="#FF0066" opacity="0.7" />
<circle cx="200" cy="40" r="10" fill="#FFFF00" opacity="0.7" />
<circle cx="250" cy="80" r="12" fill="#00FFFF" opacity="0.7" />
<circle cx="100" cy="60" r="8" fill="#FF00FF" opacity="0.7" />
<!-- Dance Floor -->
<ellipse cx="150" cy="240" rx="140" ry="40" fill="url(#discoFloor)" stroke="#FF00FF" stroke-width="1" />
<g clip-path="url(#danceFloor)">
<rect x="10" y="200" width="280" height="80" fill="url(#discoPattern)" />
<!-- Disco Floor Squares -->
<g opacity="0.8">
<rect x="30" y="220" width="20" height="20" fill="#FF0066" />
<rect x="60" y="220" width="20" height="20" fill="#FFFF00" />
<rect x="90" y="220" width="20" height="20" fill="#00FFFF" />
<rect x="120" y="220" width="20" height="20" fill="#FF00FF" />
<rect x="150" y="220" width="20" height="20" fill="#FF0066" />
<rect x="180" y="220" width="20" height="20" fill="#FFFF00" />
<rect x="210" y="220" width="20" height="20" fill="#00FFFF" />
<rect x="240" y="220" width="20" height="20" fill="#FF00FF" />
</g>
</g>
<!-- Neon Cactus -->
<g transform="translate(90, 180) scale(0.8)" filter="url(#neonGlow)">
<!-- Main Body -->
<path d="M0,0 Q5,-40 0,-80 Q-5,-40 0,0 Z" fill="url(#cactusGradient)" />
<!-- Arms -->
<path d="M0,-50 Q15,-55 30,-40 Q15,-45 0,-50 Z" fill="url(#cactusGradient)" />
<path d="M0,-30 Q-15,-35 -30,-20 Q-15,-25 0,-30 Z" fill="url(#cactusGradient)" />
<!-- Spikes -->
<line x1="-5" y1="-70" x2="-12" y2="-75" stroke="#00FFCC" stroke-width="1" />
<line x1="5" y1="-60" x2="12" y2="-65" stroke="#00FFCC" stroke-width="1" />
<line x1="-5" y1="-50" x2="-12" y2="-55" stroke="#00FFCC" stroke-width="1" />
<line x1="5" y1="-40" x2="12" y2="-45" stroke="#00FFCC" stroke-width="1" />
<line x1="-5" y1="-30" x2="-12" y2="-35" stroke="#00FFCC" stroke-width="1" />
<line x1="5" y1="-20" x2="12" y2="-25" stroke="#00FFCC" stroke-width="1" />
<!-- Cool Shades -->
<path d="M-8,-65 L-3,-63 L3,-63 L8,-65" stroke="#00FFCC" stroke-width="2" fill="none" />
<ellipse cx="-5" cy="-65" rx="3" ry="2" fill="#FF00FF" />
<ellipse cx="5" cy="-65" rx="3" ry="2" fill="#FF00FF" />
<!-- Dancing Arms/Legs -->
<path d="M0,-10 Q10,10 30,5" stroke="#00FFAA" stroke-width="3" fill="none" />
<path d="M0,-10 Q-20,10 -25,5" stroke="#00FFAA" stroke-width="3" fill="none" />
<path d="M0,0 Q10,20 20,25" stroke="#00FFAA" stroke-width="3" fill="none" />
<path d="M0,0 Q-10,15 -15,25" stroke="#00FFAA" stroke-width="3" fill="none" />
<!-- Cactus Flower -->
<circle cx="0" cy="-85" r="5" fill="#FF00FF" />
<circle cx="3" cy="-88" r="2" fill="#FF55FF" />
<circle cx="-3" cy="-88" r="2" fill="#FF55FF" />
<circle cx="3" cy="-82" r="2" fill="#FF55FF" />
<circle cx="-3" cy="-82" r="2" fill="#FF55FF" />
</g>
<!-- Robot -->
<g transform="translate(190, 180) scale(0.8)" filter="url(#robotGlow)">
<!-- Robot Head -->
<rect x="-15" y="-75" width="30" height="25" rx="3" fill="url(#robotGradient)" />
<!-- Robot Body -->
<rect x="-20" y="-50" width="40" height="50" rx="2" fill="url(#robotGradient)" />
<!-- Antenna -->
<line x1="0" y1="-75" x2="0" y2="-85" stroke="#00AAFF" stroke-width="2" />
<circle cx="0" cy="-85" r="3" fill="#FF0066" />
<!-- Robot Eyes -->
<circle cx="-8" cy="-65" r="4" fill="#00AAFF" />
<circle cx="8" cy="-65" r="4" fill="#00AAFF" />
<circle cx="-8" cy="-65" r="2" fill="#FFFFFF" />
<circle cx="8" cy="-65" r="2" fill="#FFFFFF" />
<!-- Robot Mouth -->
<rect x="-10" y="-55" width="20" height="3" fill="#222222" />
<line x1="-10" y1="-54" x2="10" y2="-54" stroke="#00AAFF" stroke-width="1" />
<!-- Robot Controls -->
<circle cx="0" cy="-30" r="5" fill="#FF0066" />
<rect x="-15" y="-40" width="8" height="4" fill="#FFFF00" />
<rect x="7" y="-40" width="8" height="4" fill="#FFFF00" />
<!-- Robot Arms -->
<path d="M-20,-40 Q-40,-30 -45,-10" stroke="#AAAAAA" stroke-width="5" fill="none" />
<circle cx="-45" cy="-10" r="5" fill="#CCCCCC" />
<path d="M20,-40 Q30,-20 40,0" stroke="#AAAAAA" stroke-width="5" fill="none" />
<circle cx="40" cy="0" r="5" fill="#CCCCCC" />
<!-- Robot Legs -->
<path d="M-10,0 Q-15,15 -20,25" stroke="#AAAAAA" stroke-width="6" fill="none" />
<path d="M10,0 Q20,10 25,25" stroke="#AAAAAA" stroke-width="6" fill="none" />
<ellipse cx="-20" cy="25" rx="6" ry="3" fill="#444444" />
<ellipse cx="25" cy="25" rx="6" ry="3" fill="#444444" />
</g>
<!-- Disco Ball -->
<circle cx="150" cy="40" r="20" fill="#DDDDDD" />
<ellipse cx="150" cy="40" rx="20" ry="8" fill="#AAAAAA" />
<circle cx="145" cy="35" r="2" fill="white" />
<circle cx="155" cy="38" r="1" fill="white" />
<circle cx="150" cy="32" r="1.5" fill="white" />
<line x1="150" y1="0" x2="150" y2="20" stroke="#AAAAAA" stroke-width="2" />
<!-- Music Notes -->
<g opacity="0.8">
<path d="M50,100 Q60,90 50,80 Q40,70 50,60" stroke="#FF00FF" stroke-width="2" fill="none" />
<circle cx="50" cy="100" r="5" fill="#FF00FF" />
<path d="M240,90 Q250,80 240,70 Q230,60 240,50" stroke="#00FFFF" stroke-width="2" fill="none" />
<circle cx="240" cy="90" r="5" fill="#00FFFF" />
<path d="M70,130 Q80,120 70,110" stroke="#FFFF00" stroke-width="2" fill="none" />
<circle cx="70" cy="130" r="5" fill="#FFFF00" />
<path d="M220,120 Q230,110 220,100" stroke="#FF0066" stroke-width="2" fill="none" />
<circle cx="220" cy="120" r="5" fill="#FF0066" />
</g>
<!-- Spotlight Effect -->
<ellipse cx="90" cy="180" rx="30" ry="10" fill="#00FFAA" opacity="0.2" />
<ellipse cx="190" cy="180" rx="30" ry="10" fill="#00AAFF" opacity="0.2" />
</svg>
Judge's Analysis
Player 2's submission effectively captures the theme of a 'neon cactus in a disco dance-off with a robot' through clear depiction of both a cactus and a robot on a dance floor under a disco ball.
The use of vibrant colors and dynamic composition enhances the visual appeal and aligns well with the prompt.
Player 1's image, while creative, lacks clarity in depicting the cactus and the overall dance-off scenario.
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 astronaut grilling burgers on the moon under a disco ball."
"An octopus playing a grand piano at a coral reef concert"
"Floating cat island with fish-shaped clouds above"