Creative Challenge
"Bioluminescent jellyfish in a cosmic starry sky"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="jellyGlow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#00FFFF; stop-opacity:1" />
<stop offset="100%" style="stop-color:#00008B; stop-opacity:0" />
</radialGradient>
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceAlpha" stdDeviation="3" result="blur"/>
<feFlood flood-color="#00FFFF" result="flood"/>
<feComposite in2="blur" operator="in" />
<feMerge>
<feMergeNode />
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<pattern id="stars" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="1" cy="1" r="1" fill="white" />
</pattern>
</defs>
<rect width="300" height="300" fill="black" />
<rect width="300" height="300" fill="url(#stars)" />
<g filter="url(#glow)" transform="translate(150, 200)">
<path d="M0,-30 C-15,-10 -15,20 -10,20 C-10,30 10,30 10,20 C15,20 15,-10 0,-30 Z" fill="url(#jellyGlow)" />
<path d="M-10,-20 C-15,-10 -20,10 -10,10 L10,10 C20,10 15,-10 10,-20 Z" fill="url(#jellyGlow)" />
<path d="M0,10 Q-10,20 -10,30 Q-10,35 -5,30 Q0,35 5,30 Q10,20 0,10 Z" fill="url(#jellyGlow)" />
</g>
<circle cx="50" cy="50" r="3" fill="white" />
<circle cx="80" cy="70" r="2" fill="white" />
<circle cx="130" cy="90" r="2.5" fill="white" />
<circle cx="200" cy="40" r="1.5" fill="white" />
<circle cx="220" cy="100" r="3" fill="white" />
<circle cx="270" cy="200" r="2" fill="white" />
<circle cx="150" cy="250" r="1.2" fill="white" />
<circle cx="100" cy="150" r="1.8" fill="white" />
<circle cx="250" cy="150" r="1" fill="white" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="jellyGlow" cx="150" cy="150" r="100" fx="150" fy="150">
<stop offset="0" stop-color="#00ffff" stop-opacity="0.8"/>
<stop offset="1" stop-color="#00ffff" stop-opacity="0"/>
</radialGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<path id="jellyPath" d="M150,100 Q200,130 200,170 Q220,160 220,140 L220,130 Q230,120 240,120 Q250,130 250,140 Q260,130 260,150 Q250,160 240,160 Q230,150 220,150 Q210,140 210,130 Q200,140 200,150 Q190,140 190,130 Q180,140 180,150 Q170,140 170,160 Q160,150 160,170 Q150,160 150,150 L150,100 Z"/>
</defs>
<rect width="300" height="300" fill="url(#indigoGradient)"/>
<!-- Stars -->
<g id="stars">
<circle cx="50" cy="50" r="1" fill="white" filter="url(#starGlow)"/>
<circle cx="80" cy="100" r="1.5" fill="white"/>
<circle cx="120" cy="70" r="1" fill="white" filter="url(#starGlow)"/>
<!-- More stars... -->
</g>
<!-- Jellyfish -->
<g id="jellyfish">
<path d="M150,200 Q180,220 200,200 Q220,180 200,160 Q180,140 150,160 Q120,140 100,160 Q80,180 150,200" fill="url(#jellyGlow)" filter="url(#glow)"/>
<path d="M150,200 Q170,230 150,210 Q130,230 150,200" fill="none" stroke="#00ffff" stroke-width="2"/>
<!-- Tentacles -->
<path d="M200,160 Q220,140 240,140" stroke="#00ffff" stroke-width="1.5" fill="none"/>
<path d="M200,160 Q220,180 240,180" stroke="#00ffff" stroke-width="1.5" fill="none"/>
<!-- More tentacles... -->
</g>
<!-- Cosmic rays -->
<g id="cosmicRays">
<line x1="0" y1="50" x2="300" y2="50" stroke="#00ffff" stroke-width="1" stroke-opacity="0.3"/>
<line x1="50" y1="0" x2="50" y2="300" stroke="#00ffff" stroke-width="1" stroke-opacity="0.3"/>
</g>
<!-- Stardust -->
<g id="stardust">
<circle cx="100" cy="100" r="2" fill="white" stroke="#00ffff" stroke-width="1" stroke-opacity="0.6"/>
<circle cx="200" cy="200" r="3" fill="white" stroke="#00ffff" stroke-width="1.5" stroke-opacity="0.6"/>
<!-- More stardust... -->
</g>
</svg>
Judge's Analysis
Player 1's submission captures the essence of a bioluminescent jellyfish against a cosmic backdrop more effectively with its glowing central element and starry background.
The composition adheres closely to the prompt, offering a visually appealing and technically sound interpretation.
Player 2's image, while abstract and creative, lacks the clarity and visual coherence needed to strongly convey the theme.
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 jellyfish ballroom dance"
"Galactic snail surfing on a rainbow comet"
"Alien pastry chef baking under a starry sky"
"Floating clockwork island with a treehouse and waterfall"
"Celestial jellyfish floating in a vivid, starry night sky"
"Melting clock in a digital forest"