Creative Challenge
"Jellyfish in a Teacup Floating Through Space"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="spaceGradient" cx="50%" cy="50%" r="70%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:rgb(10,10,40);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(25,25,75);stop-opacity:1" />
</radialGradient>
<radialGradient id="jellyGradient" cx="50%" cy="50%" r="70%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:rgb(255,50,255);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(100,0,150);stop-opacity:0" />
</radialGradient>
<radialGradient id="teacupGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:rgb(230,230,230);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(180,180,180);stop-opacity:1" />
</radialGradient>
<pattern id="starPattern" width="6" height="6" patternUnits="userSpaceOnUse">
<circle cx="3" cy="3" r="1" style="fill:white;"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#spaceGradient)" />
<rect width="300" height="300" fill="url(#starPattern)" />
<g transform="translate(150,150)">
<ellipse cx="0" cy="0" rx="70" ry="30" fill="url(#teacupGradient)" />
<path d="M -60 0 Q -50 -50 0 -50 Q 50 -50 60 0 Z" fill="url(#jellyGradient)" />
<path d="M -10 0 C -5 30, -5 60, -10 100" stroke="rgba(255,100,255,0.8)" stroke-width="5" fill="none" />
<path d="M 0 0 C 5 35, 5 65, 0 100" stroke="rgba(255,100,255,0.8)" stroke-width="5" fill="none" />
<path d="M 10 0 C 15 30, 15 60, 10 100" stroke="rgba(255,100,255,0.8)" stroke-width="5" fill="none" />
</g>
<g transform="translate(250,50) rotate(15)">
<ellipse cx="0" cy="0" rx="5" ry="15" fill="lightgrey" />
<path d="M 0 10 Q -10 5 0 0" fill="lightgrey" />
</g>
<g transform="translate(50,250) rotate(-25)">
<ellipse cx="0" cy="0" rx="5" ry="15" fill="lightgrey" />
<path d="M 0 10 Q 10 5 0 0" fill="lightgrey" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with cosmic dust effect -->
<rect width="300" height="300" fill="url(#spaceGradient)"/>
<!-- Space gradient -->
<defs>
<radialGradient id="spaceGradient" cx="150" cy="150" r="150" fx="150" fy="150">
<stop offset="0" stop-color="#1A0F3C"/>
<stop offset="1" stop-color="#000"/>
</radialGradient>
<!-- Star cluster -->
<g id="stars">
<circle cx="50" cy="50" r="1" fill="white" opacity="0.8"/>
<circle cx="80" cy="30" r="1" fill="white" opacity="0.6"/>
<circle cx="110" cy="70" r="1" fill="white" opacity="0.4"/>
<!-- More stars (repeated for effect) -->
</g>
<!-- Teacup gradient -->
<linearGradient id="teacupGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0" stop-color="#FFF"/>
<stop offset="1" stop-color="#CCD5E6"/>
</linearGradient>
<!-- Jellyfish glow effect -->
<linearGradient id="jellyGlow" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#4C8EEE" stop-opacity="0.8"/>
<stop offset="1" stop-color="#1A0F3C" stop-opacity="0"/>
</linearGradient>
</defs>
<!-- Teacup -->
<path d="M150,180c0-20,15-35,35-35s35,15,35,35v40c0,5-2.5,9-6,12h-80c-3.5,0-6-3-6-6l0-40c0-10-8-20-20-20s-20,10-20,20l0,40c0,3,3,6,6,6h80c3,3,6,4,6,6v-40C165,215,150,200,150,180z"
fill="url(#teacupGradient)" stroke="#2E4053" stroke-width="2"/>
<!-- Jellyfish body -->
<ellipse cx="150" cy="160" rx="25" ry="15" fill="#FFFFFF" fill-opacity="0.6"
stroke="#4C8EEE" stroke-width="2"/>
<!-- Jellyfish tentacles -->
<path d="M150,160 Q170,140 190,130 Q210,120 230,115 Q250,110 260,100"
fill="none" stroke="url(#jellyGlow)" stroke-width="4"/>
<path d="M150,160 Q130,140 110,130 Q90,120 70,115 Q50,110 30,100"
fill="none" stroke="url(#jellyGlow)" stroke-width="4"/>
<!-- Floating movement lines -->
<path d="M140,170 Q150,160 160,150" fill="none" stroke="#4C8EEE" stroke-width="1"/>
<path d="M160,170 Q150,160 140,150" fill="none" stroke="#4C8EEE" stroke-width="1"/>
<!-- Glow effect around teacup-jellyfish -->
<circle cx="150" cy="150" r="50" fill="url(#jellyGlow)" fill-opacity="0.4"/>
</svg>
Judge's Analysis
Player 1's image effectively captures the idea of a 'Jellyfish in a Teacup Floating Through Space' with clear visual representation of both the jellyfish and the space theme.
The use of dots suggests a starry background, and the jellyfish's vibrant colors contrast well with the dark space.
Player 2's image is more abstract and less recognizable, making it harder to interpret within the context of 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"
"Aquarium filled with floating airships instead of fish"