Creative Challenge
"Jellyfish floating in a teacup under a starry sky"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Starry Sky -->
<rect x="0" y="0" width="300" height="300" fill="url(#starry-sky)"/>
<linearGradient id="starry-sky" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#3498db" stop-opacity="1"/>
<stop offset="1" stop-color="#1a1d23" stop-opacity="1"/>
</linearGradient>
<g id="stars">
<circle cx="50" cy="50" r="2" fill="#fff" opacity="0.5"/>
<circle cx="100" cy="75" r="1" fill="#fff" opacity="0.5"/>
<circle cx="150" cy="100" r="3" fill="#fff" opacity="0.5"/>
<circle cx="200" cy="125" r="2" fill="#fff" opacity="0.5"/>
<circle cx="250" cy="150" r="1" fill="#fff" opacity="0.5"/>
<!-- Many more stars... -->
</g>
<!-- Teacup -->
<g id="teacup" transform="translate(150 150)">
<path d="M -50 0 L -50 -50 Q -40 -60 -30 -60 L 30 -60 Q 40 -60 50 -50 L 50 0 Z" fill="#fff" stroke="#333" stroke-width="2"/>
<path d="M -50 0 L -50 -20 Q -40 -30 -30 -30 L 30 -30 Q 40 -30 50 -20 L 50 0 Z" fill="#fff" stroke="#333" stroke-width="1"/>
<circle cx="0" cy="-50" r="10" fill="#fff" stroke="#333" stroke-width="2"/>
</g>
<!-- Jellyfish -->
<g id="jellyfish" transform="translate(150 150)">
<circle cx="0" cy="-30" r="20" fill="url(#jellyfish-body)"/>
<linearGradient id="jellyfish-body" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#ffd700" stop-opacity="1"/>
<stop offset="1" stop-color="#ffc107" stop-opacity="1"/>
</linearGradient>
<path d="M 0 -30 L 0 -50 Q 10 -60 20 -60 L 40 -60 Q 50 -60 60 -50 L 60 -30 Z" fill="url(#jellyfish-tentacle)"/>
<linearGradient id="jellyfish-tentacle" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#ffd700" stop-opacity="1"/>
<stop offset="1" stop-color="#fff" stop-opacity="1"/>
</linearGradient>
<path d="M 0 -30 L 0 -50 Q -10 -60 -20 -60 L -40 -60 Q -50 -60 -60 -50 L -60 -30 Z" fill="url(#jellyfish-tentacle)"/>
<!-- Many more tentacles... -->
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="jellyGradient" 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:#0000ff; stop-opacity:1" />
</radialGradient>
<linearGradient id="cupGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#d1a56d; stop-opacity:1" />
<stop offset="100%" style="stop-color:#b59158; stop-opacity:1" />
</linearGradient>
<pattern id="starPattern" patternUnits="userSpaceOnUse" width="5" height="5">
<circle cx="2.5" cy="2.5" r="1" fill="#ffffff" />
</pattern>
</defs>
<rect width="300" height="300" fill="black" />
<rect width="300" height="300" fill="url(#starPattern)" />
<g transform="translate(150, 150)">
<ellipse cx="0" cy="60" rx="50" ry="20" fill="url(#jellyGradient)" />
<path d="M-25,60 Q0,110 25,60 Q0,90 -25,60" fill="#00ffff" opacity="0.6"/>
<path d="M-25,60 Q0,80 25,60 Q0,70 -25,60" fill="#ffffff" opacity="0.3"/>
<path d="M-15,70 Q0,130 15,70 Q0,100 -15,70" fill="#00bfff" opacity="0.5"/>
</g>
<path d="M100,180 Q100,210 150,210 Q200,210 200,180 Q200,190 150,190 Q100,190 100,180 Z" fill="url(#cupGradient)" />
<path d="M100,180 Q100,210 150,210 Q200,210 200,180 Q200,178 100,178 Z" fill="#ffffff" opacity="0.5"/>
</svg>
Judge's Analysis
Player 1's image creatively presents a jellyfish-like structure in a teacup with a clear starry sky, adhering well to the prompt.
The simplicity and clarity of the design enhance its visual appeal, even though the jellyfish form is abstract.
Player 2's image, while technically interesting with its dot pattern background, does not clearly convey the concept of a jellyfish in a teacup under a starry sky.
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
"Penguin in a Spacesuit juggling planets"
"Starlit jellyfish conducting an underwater orchestra"
"Dinosaurs drinking tea at a whimsical garden party"
"Socks hanging on tree branches under a rainbow"
"A steam-powered penguin gliding through a rainbow sky"
"Floating island with giant teapot waterfall, stylized vector"