Creative Challenge
"Floating jellyfish cityscape under a full moon in a geometric style"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="grad-moon" x1="0" x2="0" y1="0" y2="1">
<stop offset="0" stop-color="#fff" stop-opacity="0.8"/>
<stop offset="1" stop-color="#fff" stop-opacity="0.2"/>
</linearGradient>
<linearGradient id="grad-jelly" x1="0" x2="0" y1="0" y2="1">
<stop offset="0" stop-color="#66d9ef" stop-opacity="0.8"/>
<stop offset="1" stop-color="#44b2e6" stop-opacity="0.2"/>
</linearGradient>
<pattern id="pat-city" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="10" height="10" fill="#333" rx="1"/>
<rect x="2" y="2" width="6" height="6" fill="#666" rx="1"/>
</pattern>
</defs>
<rect x="0" y="0" width="300" height="300" fill="#111"/>
<circle cx="150" cy="70" r="60" fill="url(#grad-moon)"/>
<g transform="translate(150, 200)">
<g transform="rotate(30)">
<rect x="-20" y="-20" width="40" height="40" fill="url(#pat-city)" rx="5"/>
<rect x="-15" y="-15" width="30" height="30" fill="#666" rx="3"/>
<rect x="-10" y="-10" width="20" height="20" fill="#333" rx="2"/>
</g>
<g transform="rotate(-30)">
<rect x="-20" y="-20" width="40" height="40" fill="url(#pat-city)" rx="5"/>
<rect x="-15" y="-15" width="30" height="30" fill="#666" rx="3"/>
<rect x="-10" y="-10" width="20" height="20" fill="#333" rx="2"/>
</g>
<g transform="rotate(60)">
<rect x="-20" y="-20" width="40" height="40" fill="url(#pat-city)" rx="5"/>
<rect x="-15" y="-15" width="30" height="30" fill="#666" rx="3"/>
<rect x="-10" y="-10" width="20" height="20" fill="#333" rx="2"/>
</g>
<g transform="rotate(-60)">
<rect x="-20" y="-20" width="40" height="40" fill="url(#pat-city)" rx="5"/>
<rect x="-15" y="-15" width="30" height="30" fill="#666" rx="3"/>
<rect x="-10" y="-10" width="20" height="20" fill="#333" rx="2"/>
</g>
</g>
<g transform="translate(100, 150)">
<ellipse cx="0" cy="0" rx="20" ry="30" fill="url(#grad-jelly)"/>
<ellipse cx="0" cy="0" rx="15" ry="25" fill="#fff" stroke="#333" stroke-width="2"/>
<ellipse cx="0" cy="0" rx="10" ry="20" fill="#333"/>
</g>
<g transform="translate(200, 150)">
<ellipse cx="0" cy="0" rx="20" ry="30" fill="url(#grad-jelly)"/>
<ellipse cx="0" cy="0" rx="15" ry="25" fill="#fff" stroke="#333" stroke-width="2"/>
<ellipse cx="0" cy="0" rx="10" ry="20" fill="#333"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background gradient -->
<defs>
<linearGradient id="nightSky" x1="0" y1="0" x2="0" y2="300">
<stop offset="0" stop-color="#0a192f" />
<stop offset="1" stop-color="#172a45" />
</linearGradient>
<radialGradient id="moonGlow" cx="150" cy="100" r="40" fx="150" fy="100">
<stop offset="0" stop-color="#fff" />
<stop offset="1" stop-color="#c0c0c0" />
</radialGradient>
<linearGradient id="jellyfish" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#ff9a9e" />
<stop offset="1" stop-color="#fad0c4" />
</linearGradient>
<pattern id="cityPattern" patternUnits="userSpaceOnUse" width="40" height="40">
<rect x="0" y="0" width="40" height="40" fill="#2d4263" />
<path d="M10 10 L30 30 L10 50 Z" fill="#2d4263" />
</pattern>
</defs>
<!-- Night sky background -->
<rect width="300" height="300" fill="url(#nightSky)" />
<!-- Moon -->
<circle cx="250" cy="80" r="60" fill="url(#moonGlow)" />
<!-- Jellyfish Cityscape -->
<g transform="translate(50, 100)">
<!-- Main Jellyfish Structure -->
<path d="M0 0 L100 0 L150 50 L100 100 L50 100 L0 50 Z" fill="url(#jellyfish)">
<animateTransform attributeName="transform" type="rotate" from="0 75 75" to="360 75 75" dur="8s" repeatCount="indefinite" />
</path>
<!-- Tentacles -->
<path d="M75 75 Q150 50 225 75 L225 25 L175 0 L150 25 L125 0 L75 25 Z" fill="#ff9a9e" />
<!-- City Buildings -->
<rect x="10" y="10" width="20" height="60" fill="url(#cityPattern)" />
<rect x="40" y="20" width="30" height="80" fill="url(#cityPattern)" />
<rect x="80" y="15" width="25" height="70" fill="url(#cityPattern)" />
<!-- Windows/Lights -->
<circle cx="30" cy="30" r="2" fill="#fff" />
<circle cx="50" cy="40" r="2" fill="#fff" />
<circle cx="90" cy="35" r="2" fill="#fff" />
</g>
<!-- Stars -->
<g transform="translate(0,0)">
<circle cx="20" cy="20" r="1" fill="#fff" />
<circle cx="80" cy="30" r="1" fill="#fff" />
<circle cx="200" cy="40" r="1" fill="#fff" />
<circle cx="250" cy="20" r="1" fill="#fff" />
</g>
</svg>
Judge's Analysis
Player 2's image more effectively captures the idea of a 'floating jellyfish cityscape under a full moon in a geometric style'.
It combines geometric shapes to create a structure resembling a cityscape with a clear full moon, adhering more closely to the prompt.
Player 1's submission lacks the cityscape element and does not convey the 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
"Moonlit garden with giant, glowing dandelions"
"Ballet-dancing flamingos in rainbow tutus on a lily pad stage"
"Penguins playing jazz underwater"
"An astronaut watering a sunflower on the moon"
"Cat wearing a crown, lounging on a vintage radio"
"Electric jellyfish with neon sunglasses under a starry sky"