Creative Challenge
"A jellyfish cityscape floating above a mirrored ocean"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background with subtle pattern -->
<pattern id="ocean-pattern" patternUnits="userSpaceOnUse" width="100" height="100">
<circle cx="50" cy="50" r="40" fill="none" stroke="#000" stroke-width="1" opacity="0.1"/>
</pattern>
<rect width="300" height="300" fill="url(#ocean-pattern)"/>
<!-- Mirrored ocean surface -->
<defs>
<linearGradient id="ocean-grad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#1A846F;stop-opacity:0.8"/>
<stop offset="100%" style="stop-color:#0097A1;stop-opacity:0.8"/>
</linearGradient>
</defs>
<rect x="0" y="150" width="300" height="150" fill="url(#ocean-grad)"/>
<rect x="0" y="150" width="300" height="150" fill="#0097A1" opacity="0.3"/>
<!-- Jellyfish cityscape -->
<g transform="translate(50,150)">
<!-- Large central jellyfish building -->
<g transform="translate(100,0)">
<ellipse cx="0" cy="0" rx="40" ry="30" fill="none" stroke="#fff" stroke-width="2" opacity="0.7"/>
<ellipse cx="0" cy="0" rx="35" ry="25" fill="url(#ocean-grad)" opacity="0.5"/>
<path d="M0,30 Q-20,60 0,90 Q20,60 0,30" fill="#1A846F" opacity="0.3"/>
<path d="M0,30 Q-15,45 -30,60 Q-15,75 0,90 Q15,75 30,60 Q15,45 0,30" stroke="#fff" stroke-width="1" fill="none"/>
</g>
<!-- Smaller jellyfish buildings -->
<g transform="translate(170,50)">
<ellipse cx="0" cy="0" rx="25" ry="20" fill="none" stroke="#fff" stroke-width="2" opacity="0.7"/>
<ellipse cx="0" cy="0" rx="20" ry="15" fill="url(#ocean-grad)" opacity="0.5"/>
<path d="M0,20 Q-10,30 0,40 Q10,30 0,20" fill="#1A846F" opacity="0.3"/>
<path d="M0,20 Q-7.5,27.5 -15,35 Q-7.5,42.5 0,50 Q7.5,42.5 15,35 Q7.5,27.5 0,20" stroke="#fff" stroke-width="1" fill="none"/>
</g>
<g transform="translate(230,100)">
<ellipse cx="0" cy="0" rx="30" ry="25" fill="none" stroke="#fff" stroke-width="2" opacity="0.7"/>
<ellipse cx="0" cy="0" rx="25" ry="20" fill="url(#ocean-grad)" opacity="0.5"/>
<path d="M0,25 Q-15,35 0,45 Q15,35 0,25" fill="#1A846F" opacity="0.3"/>
<path d="M0,25 Q-11.25,37.5 -22.5,50 Q-11.25,62.5 0,75 Q11.25,62.5 22.5,50 Q11.25,37.5 0,25" stroke="#fff" stroke-width="1" fill="none"/>
</g>
<!-- Animated tentacles -->
<path d="M100,0 Q150,50 100,100" stroke="#1A846F" stroke-width="2" fill="none">
<animate attributeName="d" from="M100,0 Q150,50 100,100" to="M100,0 Q160,40 100,80" dur="2s" repeatCount="indefinite" />
</path>
<path d="M100,0 Q130,40 100,80" stroke="#1A846F" stroke-width="2" fill="none">
<animate attributeName="d" from="M100,0 Q130,40 100,80" to="M100,0 Q120,50 100,100" dur="2s" repeatCount="indefinite" />
</path>
<!-- Glowing windows -->
<g transform="translate(95,20)">
<rect x="-20" y="-10" width="10" height="10" fill="#FFD700" opacity="0.7"/>
<rect x="-5" y="-10" width="10" height="10" fill="#FFD700" opacity="0.7"/>
<rect x="10" y="-10" width="10" height="10" fill="#FFD700" opacity="0.7"/>
<rect x="-20" y="0" width="10" height="10" fill="#FFD700" opacity="0.7"/>
<rect x="-5" y="0" width="10" height="10" fill="#FFD700" opacity="0.7"/>
<rect x="10" y="0" width="10" height="10" fill="#FFD700" opacity="0.7"/>
</g>
<!-- Spotlight effect -->
<defs>
<linearGradient id="spotlight" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:rgba(255,255,255,0.8);stop-opacity:0.8"/>
<stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:0"/>
</linearGradient>
</defs>
<rect x="50" y="0" width="200" height="150" fill="url(#spotlight)" opacity="0.7"/>
</g>
<!-- Ocean floor subtle pattern -->
<rect x="0" y="250" width="300" height="50" fill="#1A846F" opacity="0.3"/>
<path d="M0,250 Q50,250 100,250 Q150,250 200,250 Q250,250 300,250" fill="#0097A1" opacity="0.2"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="jellyfishGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:rgb(255,182,193);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255,105,180);stop-opacity:0" />
</radialGradient>
<linearGradient id="oceanGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:rgb(135,206,250);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(25,25,112);stop-opacity:1" />
</linearGradient>
<pattern id="cityPattern" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="60" height="60" fill="lightgray" />
<path d="M10 40 L20 20 L30 40 Z" fill="slategray" />
<path d="M40 60 L50 40 L60 60 Z" fill="slategray" />
</pattern>
<linearGradient id="reflectionGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgb(255,182,193);stop-opacity:0.5" />
<stop offset="100%" style="stop-color:rgb(255,105,180);stop-opacity:0.05" />
</linearGradient>
</defs>
<rect x="0" y="0" width="300" height="150" fill="url(#oceanGradient)" />
<ellipse cx="150" cy="100" rx="120" ry="70" fill="url(#jellyfishGradient)" filter="url(#reflectionBlur)" />
<path d="M90 140 Q150 200 210 140" fill="url(#reflectionGradient)" opacity="0.5" />
<rect x="60" y="40" width="180" height="70" fill="url(#cityPattern)" />
<g opacity="0.6">
<path d="M140 210 C130 250 170 250 160 210" stroke="lightpink" stroke-width="4" fill="none" />
<path d="M170 220 C160 260 200 260 190 220" stroke="lightpink" stroke-width="4" fill="none" />
<path d="M120 220 C110 260 150 260 140 220" stroke="lightpink" stroke-width="4" fill="none" />
</g>
<path d="M150 150 Q150 110 250 110" stroke="pink" stroke-width="4" fill="none" opacity="0.6" filter="url(#reflectionBlur)" />
<text x="20" y="280" font-family="Verdana" font-size="24" fill="white" opacity="0.5">Floating Vision</text>
</svg>
Judge's Analysis
Player 1's image effectively captures the theme of a 'jellyfish cityscape' with its use of geometric shapes and a mirrored ocean effect.
The color palette and composition provide a clear visual representation of the prompt.
In contrast, Player 2's design, while creative, lacks the clarity and direct representation of a cityscape above a mirrored ocean.
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
"Two-headed owl with neon wings under a cosmic night sky"
"Upside-down city skyline mirrored in a tranquil lake"
"Moonlit jellyfish dance in a night sky"
"Surreal clock melting over a tree branch at sunset"
"Jellyfish in a Teacup Floating Through Space"
"Aquarium filled with floating airships instead of fish"