Creative Challenge
"Surreal fishbowl with tiny city inside, fish swimming in air outside"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<gradient id="water" type="radial">
<stop offset="0" color="#4B0082" />
<stop offset="1" color="#00BFFF" />
</gradient>
<gradient id="city" type="linear" x1="0" y1="0" x2="300" y2="300">
<stop offset="0" color="#999999" />
<stop offset="1" color="#333333" />
</gradient>
<path id="fish" d="M100 150 L120 140 Q120 140, 140 140, 140 150, 140 150, 160 150, 160 150, 160 140, 160 140, 140 140, 140 140, 140 150, 140 150, 140 160, 140 160, 120 160, 120 160, 100 150">
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#gradient)://lin1" />
<!-- Fishbowl -->
<circle cx="150" cy="150" r="100" fill="url(#water)" stroke="#666" stroke-width="2" />
<!-- Water ripples -->
<circle cx="150" cy="150" r="100" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="2" />
<circle cx="150" cy="150" r="95" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2" />
<circle cx="150" cy="150" r="90" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2" />
<!-- Tiny city inside the bowl -->
<group transform="translate(150 150) scale(0.1)">
<rect x="100" y="100" width="100" height="150" fill="url(#city)" stroke="#666" stroke-width="2" />
<rect x="200" y="100" width="100" height="150" fill="url(#city)" stroke="#666" stroke-width="2" />
<path d="M300 300 l0 -150 a20 20 0 1 1 40 0 l0 -150 a20 20 0 1 1 -40 0 l0 300 a20 20 0 1 1 -40 0 l0 -150 a20 20 0 1 1 40 0" fill="url(#city)" stroke="#666" stroke-width="2" />
<circle cx="300" cy="100" r="20" fill="url(#city)" stroke="#666" stroke-width="2" />
</group>
<!-- Fish swimming in the air outside the bowl -->
<use xlink:href="#fish" x="100" y="100" transform="rotate(45)" fill="#FF69B4" stroke="#FF0000" stroke-width="1" opacity="0.8" />
<use xlink:href="#fish" x="250" y="250" transform="rotate(-45)" fill="#FFA500" stroke="#FFA500" stroke-width="1" opacity="0.8" />
<use xlink:href="#fish" x="150" y="300" transform="rotate(0)" fill="#4169E1" stroke="#4169E1" stroke-width="1" opacity="0.8" />
<use xlink:href="#fish" x="150" y="0" transform="rotate(180)" fill="#4169E1" stroke="#4169E1" stroke-width="1" opacity="0.8" />
<!-- Abstract shapes outside the bowl -->
<circle cx="100" cy="100" r="20" fill="url(#gradient)://lin1" stroke="rgba(255,255,255,0.3)" stroke-width="2" opacity="0.5" />
<circle cx="200" cy="200" r="30" fill="url(#gradient)://lin1" stroke="rgba(255,255,255,0.3)" stroke-width="2" opacity="0.5" />
<circle cx="300" cy="150" r="25" fill="url(#gradient)://lin1" stroke="rgba(255,255,255,0.3)" stroke-width="2" opacity="0.5" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="fishbowlGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:rgba(173, 216, 230, 0.9);" />
<stop offset="100%" style="stop-color:rgba(135, 206, 250, 0.5);" />
</radialGradient>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color: #87CEFA;" />
<stop offset="100%" style="stop-color: #1976D2;" />
</linearGradient>
<pattern id="cityPattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse">
<rect x="0" y="10" width="8" height="30" fill="#2E3440" />
<rect x="12" y="15" width="6" height="25" fill="#3B4252" />
<rect x="22" y="20" width="10" height="20" fill="#4C566A" />
<rect x="34" y="5" width="6" height="35" fill="#D8DEE9" />
</pattern>
</defs>
<!-- Sky Background -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Fishbowl -->
<ellipse cx="150" cy="150" rx="90" ry="100" fill="url(#fishbowlGradient)" stroke="#1E90FF" stroke-width="4" />
<!-- Tiny City inside Fishbowl -->
<ellipse cx="150" cy="190" rx="75" ry="40" fill="url(#cityPattern)" />
<!-- Fish swimming outside the Fishbowl -->
<g>
<path d="M80 50 Q70 40, 90 35 Q110 40, 100 50 Z" fill="#FF6347" />
<circle cx="82" cy="48" r="3" fill="#FFF" />
<path d="M220 100 Q210 90, 230 85 Q250 90, 240 100 Z" fill="#FFD700" />
<circle cx="222" cy="98" r="3" fill="#FFF" />
<path d="M50 200 Q40 190, 60 185 Q80 190, 70 200 Z" fill="#98FB98" />
<circle cx="52" cy="198" r="3" fill="#FFF" />
</g>
</svg>
Judge's Analysis
Player 2's image creatively captures the concept with a visually appealing design.
The cityscape inside the fishbowl is clearly defined, and the colorful fish swimming outside enhance the surreal aspect.
The composition and technical execution are strong, adhering well to 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
"Two-headed owl with neon wings under a cosmic night sky"
"Upside-down city skyline mirrored in a tranquil lake"
"A jellyfish cityscape floating above a mirrored ocean"
"Moonlit jellyfish dance in a night sky"
"Surreal clock melting over a tree branch at sunset"
"Jellyfish in a Teacup Floating Through Space"