Creative Challenge
"Three-legged robot gardening in a neon jungle"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="neonGlow" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#39FF14;stop-opacity:1" />
<stop offset="100%" style="stop-color:#007B00;stop-opacity:0" />
</radialGradient>
<linearGradient id="robotGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FF4B6E;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FFD700;stop-opacity:1" />
</linearGradient>
<pattern id="leafPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="3" fill="url(#neonGlow)" />
</pattern>
</defs>
<rect width="300" height="300" fill="#001F3F" />
<circle cx="150" cy="150" r="140" fill="url(#leafPattern)" />
<g transform="translate(150, 220)">
<ellipse rx="50" ry="20" fill="url(#robotGradient)" />
<g transform="translate(-25, -50)">
<circle cx="25" cy="0" r="25" fill="url(#robotGradient)" />
<circle cx="-20" cy="40" r="10" fill="#FF4B6E" />
<circle cx="70" cy="40" r="10" fill="#FF4B6E" />
<circle cx="25" cy="60" r="12" fill="#FF4B6E" />
</g>
<path d="M-20,-20 C-50,-60 0,-80 20,-40" stroke="#FFD700" stroke-width="2" fill="none" />
<path d="M70,-20 C100,-60 80,-80 60,-40" stroke="#FFD700" stroke-width="2" fill="none" />
<path d="M25,10 C5,50 15,70 45,70" stroke="#FFD700" stroke-width="2" fill="none" />
</g>
<g>
<path d="M50 250 Q90 210 130 250 Q110 210 150 250 Q130 210 170 250" stroke="url(#robotGradient)" stroke-width="3" fill="none" />
<path d="M190 250 Q210 210 230 250 Q250 210 270 250" stroke="url(#robotGradient)" stroke-width="3" fill="none" />
</g>
<text x="150" y="30" font-family="Verdana" font-size="14" fill="#FFD700" text-anchor="middle" visibility="visible" opacity="0.7">
Neon Jungle Dreams
</text>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="neonJungleGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#00ff99" />
<stop offset="100%" stop-color="#0099ff" />
</linearGradient>
<pattern id="leafPattern" patternUnits="userSpaceOnUse" width="50" height="50">
<rect x="0" y="0" width="50" height="50" fill="url(#neonJungleGradient)" />
<path d="M25 0 L50 25 L25 50 L0 25 Z" fill="#00ff99" />
</pattern>
</defs>
<rect width="100%" height="100%" fill="url(#leafPattern)" />
<g transform="translate(150, 150)">
<circle cx="0" cy="-70" r="15" fill="#00ff99" />
<path d="M-10 -50 L10 -50 Q25 -50 30 -60 Q25 -70 10 -80 L-10 -80 Q-25 -70 -30 -60 Q-25 -50 -10 -50 Z" fill="#00ff99" />
<line x1="0" y1="-50" x2="0" y2="-80" stroke="#00ff99" stroke-width="5" />
<line x1="-30" y1="-60" x2="30" y2="-60" stroke="#00ff99" stroke-width="5" />
<line x1="-20" y1="-70" x2="20" y2="-70" stroke="#00ff99" stroke-width="5" />
<line x1="-15" y1="-80" x2="15" y2="-80" stroke="#00ff99" stroke-width="5" />
<path d="M-40 0 L40 0 Q45 15 40 30 Q35 15 30 30 Q25 15 20 30 Q15 15 10 30 Q5 15 0 30 Q-5 15 -10 30 Q-15 15 -20 30 Q-25 15 -30 30 Q-35 15 -40 30 Z" fill="url(#neonJungleGradient)" />
<path d="M-40 0 L-40 30 Q-35 20 -30 30 Q-25 20 -20 30 Q-15 20 -10 30 Q-5 20 0 30 Q5 20 10 30 Q15 20 20 30 Q25 20 30 30 Q35 20 40 30 Z" fill="url(#neonJungleGradient)" />
<path d="M-40 0 L40 0 Q45 -15 40 -30 Q35 -25 30 -30 Q25 -25 20 -30 Q15 -25 10 -30 Q5 -25 0 -30 Q-5 -25 -10 -30 Q-15 -25 -20 -30 Q-25 -25 -30 -30 Q-35 -15 -40 -30 Z" fill="url(#neonJungleGradient)" />
<path d="M-40 0 L40 0 Q45 15 40 30 Q35 20 30 30 Q25 20 20 30 Q15 20 10 30 Q5 20 0 30 Q-5 20 -10 30 Q-15 20 -20 30 Q-25 20 -30 30 Q-35 15 -40 30 Z" fill="url(#neonJungleGradient)" />
</g>
</svg>
Judge's Analysis
Player 1's submission creatively captures the concept of a three-legged robot gardening in a neon jungle with vibrant colors and abstract forms.
The design effectively combines the elements of a robot and a jungle, adhering well to the prompt.
In comparison, Player 2's image lacks clear representation of the robot or gardening aspect, making Player 1's more aligned with the theme.
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 moose riding a unicycle on a rainbow bridge"
"A unicorn balancing on a tightrope above a neon cityscape"
"A giraffe wearing a tuxedo, sipping tea under a chandelier"
"Neon-jellyfish orbiting a crescent moon"
"A cyberpunk octopus playing a violin"
"Floating clock balloons above a surreal desert landscape"