Creative Challenge
"Solar-powered jellyfish floating above a cityscape, in geometric style"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="cityGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#808080;stop-opacity:1" />
<stop offset="100%" style="stop-color:#222222;stop-opacity:1" />
</linearGradient>
<radialGradient id="jellyfishGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FFA500;stop-opacity:1" />
</radialGradient>
<pattern id="solarPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="3" fill="#FFD700" />
</pattern>
</defs>
<!-- Cityscape -->
<rect x="0" y="150" width="300" height="150" fill="url(#cityGradient)" />
<polygon points="10,200 290,200 250,250 50,250" fill="#808080" />
<polygon points="100,250 200,250 180,300 120,300" fill="#666666" />
<!-- Jellyfish -->
<circle cx="150" cy="75" r="50" fill="url(#jellyfishGradient)" />
<circle cx="150" cy="75" r="20" fill="url(#solarPattern)" />
<path d="M150,75 L100,100 L120,120 L150,100 L180,120 L200,100 Z" fill="#FFD700" />
<path d="M150,75 L100,90 L120,110 L150,90 L180,110 L200,90 Z" fill="#FFD700" />
<path d="M150,75 L100,80 L120,100 L150,80 L180,100 L200,80 Z" fill="#FFD700" />
<path d="M150,75 L100,120 L120,140 L150,120 L180,140 L200,120 Z" fill="#FFD700" />
<path d="M150,75 L100,140 L120,160 L150,140 L180,160 L200,140 Z" fill="#FFD700" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#001730"/>
<stop offset="100%" stop-color="#1a4a7a"/>
</linearGradient>
<radialGradient id="sunCore" cx="50%" cy="50%" r="50%">
<stop offset="70%" stop-color="#ffd700"/>
<stop offset="100%" stop-color="#ffd70000"/>
</radialGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#skyGrad)"/>
<!-- Cityscape -->
<g transform="translate(0 220)">
<polygon points="0,80 40,80 40,150 0,150" fill="#2d4059"/>
<rect x="50" y="50" width="30" height="100" fill="#4a647a"/>
<rect x="90" y="70" width="25" height="80" fill="#556f86"/>
<path d="M130 150v-60l20 30-20 30z" fill="#63849c"/>
<g fill="#7d9db4">
<rect x="180" y="30" width="15" height="120"/>
<circle cx="187.5" cy="25" r="8"/>
</g>
<rect x="210" y="90" width="40" height="60" fill="#2d4059"/>
</g>
<!-- Solar Jellyfish -->
<g filter="url(#glow)">
<!-- Main jelly -->
<g transform="translate(150 100)">
<path d="M-40 0q40-30 80 0" fill="url(#sunCore)"/>
<polygon points="-30,0 30,0 0,50" fill="#ffd700" opacity="0.8"/>
<path d="M-25 15l-5 35 10-20 5 25 8-30-7 40" stroke="#ffd700" stroke-width="2" fill="none"/>
</g>
<!-- Left jelly -->
<g transform="translate(80 150)">
<ellipse cx="0" cy="-10" rx="25" ry="15" fill="#ff69b4"/>
<path d="M-15 -5q15-10 30 0" fill="url(#sunCore)" opacity="0.6"/>
<polyline points="-20,0 -10,20 0,35 10,20 20,0" stroke="#ff1493" stroke-width="3" fill="none"/>
</g>
<!-- Right jelly -->
<g transform="translate(220 180)">
<circle cx="0" cy="-15" r="18" fill="#9370db"/>
<path d="M-15 0v40l10-15 5 20 8-25" stroke="#8a2be2" stroke-width="2" fill="none"/>
<rect x="-10" y="-25" width="20" height="10" fill="#ffd700" rx="3"/>
</g>
</g>
<!-- Solar connections -->
<g stroke="#ffffff80" stroke-width="2" stroke-dasharray="4 4">
<line x1="150" y1="110" x2="180" y2="200"/>
<line x1="90" y1="140" x2="120" y2="220"/>
<line x1="210" y1="170" x2="240" y2="250"/>
</g>
</svg>
Judge's Analysis
Player 2's submission captures the concept of solar-powered jellyfish in a geometric style more effectively, with multiple vibrant geometric shapes floating above a cityscape, enhancing the sense of a bustling urban environment.
The use of colors and forms is more dynamic, adding to the visual appeal and creativity.
Player 1's image, while geometric, lacks the same level of detail and complexity in depicting 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
"Floating clock made of clouds in a stormy sky"
"A lighthouse shining beams through a swirling night storm"
"Intergalactic snail race on a rainbow comet track"
"Volcano spewing rainbow-colored lava under a crescent moon"
"Octopus juggling planets under the ocean"
"Van Gogh's Starry Night with neon-colored galaxies"