Creative Challenge
"A jellyfish with skyscraper tentacles floating over a futuristic cityscape"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Cityscape -->
<rect x="0" y="200" width="300" height="100" fill="#333" rx="10" />
<g transform="translate(50, 220)">
<rect x="0" y="0" width="20" height="80" fill="#666" rx="5" />
<rect x="30" y="0" width="20" height="120" fill="#777" rx="5" />
<rect x="60" y="0" width="20" height="100" fill="#888" rx="5" />
</g>
<g transform="translate(150, 220)">
<rect x="0" y="0" width="20" height="150" fill="#999" rx="5" />
<rect x="30" y="0" width="20" height="120" fill="#aaa" rx="5" />
<rect x="60" y="0" width="20" height="100" fill="#bbb" rx="5" />
</g>
<!-- Jellyfish -->
<g transform="translate(150, 50)">
<circle cx="0" cy="0" r="50" fill="#ffd700" opacity="0.8" />
<g transform="translate(0, -20)">
<path d="M 0,0 C 20,0 40,20 40,40 C 40,60 20,80 0,80 C -20,80 -40,60 -40,40 C -40,20 -20,0 0,0" fill="#ffe6cc" />
<path d="M 0,0 C 20,0 40,20 40,40 C 40,60 20,80 0,80 C -20,80 -40,60 -40,40 C -40,20 -20,0 0,0" stroke="#ff9900" stroke-width="2" fill="none" />
</g>
</g>
<!-- Tentacles -->
<g transform="translate(150, 50)">
<path d="M 0,0 C 10,10 20,20 30,30 C 40,40 50,50 60,60" fill="#ff66cc" stroke="#ff33cc" stroke-width="2" />
<path d="M 0,0 C -10,10 -20,20 -30,30 C -40,40 -50,50 -60,60" fill="#ff66cc" stroke="#ff33cc" stroke-width="2" />
<path d="M 0,0 C 10,-10 20,-20 30,-30 C 40,-40 50,-50 60,-60" fill="#ff66cc" stroke="#ff33cc" stroke-width="2" />
<path d="M 0,0 C -10,-10 -20,-20 -30,-30 C -40,-40 -50,-50 -60,-60" fill="#ff66cc" stroke="#ff33cc" stroke-width="2" />
</g>
<!-- Skyscraper Tentacles -->
<g transform="translate(120, 120)">
<rect x="0" y="0" width="10" height="100" fill="#666" rx="5" />
<rect x="20" y="0" width="10" height="120" fill="#777" rx="5" />
<rect x="40" y="0" width="10" height="150" fill="#888" rx="5" />
</g>
<g transform="translate(180, 120)">
<rect x="0" y="0" width="10" height="120" fill="#999" rx="5" />
<rect x="20" y="0" width="10" height="150" fill="#aaa" rx="5" />
<rect x="40" y="0" width="10" height="180" fill="#bbb" rx="5" />
</g>
<!-- Gradients and Lighting -->
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#ff9900" />
<stop offset="100%" stop-color="#ffd700" />
</linearGradient>
<linearGradient id="grad2" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#ffe6cc" />
<stop offset="100%" stop-color="#ffd700" />
</linearGradient>
</defs>
<g transform="translate(150, 50)">
<circle cx="0" cy="0" r="50" fill="url(#grad1)" opacity="0.5" />
<g transform="translate(0, -20)">
<path d="M 0,0 C 20,0 40,20 40,40 C 40,60 20,80 0,80 C -20,80 -40,60 -40,40 C -40,20 -20,0 0,0" fill="url(#grad2)" />
</g>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Futuristic cityscape -->
<rect x="0" y="150" width="300" height="150" fill="#1a1a1a"/>
<rect x="20" y="170" width="80" height="130" fill="#333"/>
<rect x="120" y="120" width="80" height="180" fill="#444"/>
<rect x="220" y="140" width="80" height="160" fill="#555"/>
<!-- Jellyfish body -->
<circle cx="150" cy="75" r="50" fill="#fad1e0"/>
<!-- Skyscraper tentacles -->
<rect x="140" y="120" width="20" height="100" fill="#94d0cc"/>
<rect x="130" y="160" width="40" height="80" fill="#7bb6b3"/>
<rect x="120" y="140" width="60" height="120" fill="#54a1a1"/>
<rect x="110" y="150" width="80" height="100" fill="#3d8b8e"/>
<!-- Jellyfish glowing lights -->
<circle cx="120" cy="60" r="5" fill="#ff8c94"/>
<circle cx="180" cy="45" r="8" fill="#ff8c94"/>
<circle cx="240" cy="70" r="6" fill="#ff8c94"/>
</svg>
Judge's Analysis
Player 1's submission creatively integrates the jellyfish with a sun-like element and tentacles resembling skyscrapers, effectively capturing the futuristic cityscape concept.
The use of gradients and color contrasts adds to the visual appeal, enhancing the overall composition.
Player 2's image, while interesting, lacks the clear depiction of jellyfish elements and does not convey the futuristic theme as strongly.
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 flamingo wearing a superhero cape flying over city skyscrapers"
"Giant cat drinking from a teacup filled with stars"
"Levitating octopus juggling flaming comet balls"
"Snail in a top hat racing on a skateboard"
"A cat wearing a helmet, surfing a rainbow wave under a starry sky"
"Surreal clock with melting numbers and wings, floating in a cosmic sky"