Creative Challenge
"Glowing jellyfish in a cosmic tea cup"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="jellyfishGlow" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FFDDFF" stop-opacity="0.8" />
<stop offset="100%" stop-color="#FF33FF" stop-opacity="0" />
</radialGradient>
<linearGradient id="cosmicTeacup" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#4527A0" />
<stop offset="100%" stop-color="#1E88E5" />
</linearGradient>
<radialGradient id="teacupGlow" cx="50%" cy="50%" r="50%">
<stop offset="50%" stop-color="#FFFFFF" stop-opacity="0.3" />
<stop offset="100%" stop-color="#7B1FA2" stop-opacity="0.1" />
</radialGradient>
</defs>
<circle cx="150" cy="200" r="60" fill="url(#cosmicTeacup)" stroke="#512DA8" stroke-width="5" />
<ellipse cx="150" cy="180" rx="70" ry="25" fill="url(#teacupGlow)" />
<path d="M 110 220 Q 150 260, 190 220" fill="none" stroke="#4527A0" stroke-width="5" fill-opacity="0.5" />
<g transform="translate(50, 80)">
<path d="M50 0 Q75 50, 50 100 Q25 50, 50 0 Z" fill="url(#jellyfishGlow)" />
<circle cx="50" cy="0" r="5" fill="#FF33FF" />
</g>
<g transform="translate(200, 90)">
<path d="M50 0 Q75 50, 50 100 Q25 50, 50 0 Z" fill="url(#jellyfishGlow)" />
<circle cx="50" cy="0" r="5" fill="#FF33FF" />
</g>
<g transform="rotate(20, 140, 110)">
<path d="M140 90 Q160 130, 140 170 Q120 130, 140 90 Z" fill="url(#jellyfishGlow)" />
<circle cx="140" cy="90" r="5" fill="#FF33FF" />
</g>
<g transform="translate(0, 150)">
<path d="M50 0 Q75 50, 50 100 Q25 50, 50 0 Z" fill="url(#jellyfishGlow)" />
<circle cx="50" cy="0" r="5" fill="#FF33FF" />
</g>
<path d="M200 180 Q250 170, 265 210 Q250 250, 200 240" fill="none" stroke="#7B1FA2" stroke-width="4" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="glow" x1="0" x2="0" y1="0" y2="1">
<stop offset="0" stop-color="#ff69b4" stop-opacity="0.8"/>
<stop offset="1" stop-color="#ff69b4" stop-opacity="0.2"/>
</linearGradient>
<radialGradient id="cup-glow" cx="50%" cy="50%" fx="50%" fy="50%" r="50%">
<stop offset="0" stop-color="#ffe6cc" stop-opacity="0.8"/>
<stop offset="1" stop-color="#ffe6cc" stop-opacity="0.2"/>
</radialGradient>
<pattern id="star-pattern" width="10" height="10" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="10" height="10" fill="#fff" opacity="0.2"/>
<circle cx="5" cy="5" r="2" fill="#fff" opacity="0.4"/>
</pattern>
</defs>
<g transform="translate(150, 150)">
<circle cx="0" cy="0" r="120" fill="url(#cup-glow)" opacity="0.8"/>
<path d="M 0 -120 C 0 -120, 30 -100, 60 -80 S 100 -30, 120 0 S 100 30, 60 80 S 30 100, 0 120 Z" fill="#fff" opacity="0.2"/>
<path d="M 0 -120 C 0 -120, -30 -100, -60 -80 S -100 -30, -120 0 S -100 30, -60 80 S -30 100, 0 120 Z" fill="#fff" opacity="0.2"/>
<g transform="translate(0, -40)">
<circle cx="0" cy="0" r="20" fill="url(#glow)"/>
<circle cx="0" cy="0" r="15" fill="#fff" opacity="0.8"/>
<circle cx="0" cy="0" r="10" fill="#ff69b4" opacity="0.8"/>
<circle cx="0" cy="0" r="5" fill="#fff" opacity="0.8"/>
</g>
<g transform="translate(-40, 0)">
<circle cx="0" cy="0" r="20" fill="url(#glow)"/>
<circle cx="0" cy="0" r="15" fill="#fff" opacity="0.8"/>
<circle cx="0" cy="0" r="10" fill="#ff69b4" opacity="0.8"/>
<circle cx="0" cy="0" r="5" fill="#fff" opacity="0.8"/>
</g>
<g transform="translate(40, 0)">
<circle cx="0" cy="0" r="20" fill="url(#glow)"/>
<circle cx="0" cy="0" r="15" fill="#fff" opacity="0.8"/>
<circle cx="0" cy="0" r="10" fill="#ff69b4" opacity="0.8"/>
<circle cx="0" cy="0" r="5" fill="#fff" opacity="0.8"/>
</g>
<rect x="-150" y="-150" width="300" height="300" fill="url(#star-pattern)" opacity="0.2"/>
</g>
</svg>
Judge's Analysis
Player 1's submission features a more dynamic representation of the concept with glowing elements and a clear depiction of a cup-like shape, which aligns well with the prompt of 'glowing jellyfish in a cosmic tea cup.' The use of vibrant colors and a distinct cosmic background enhances the visual appeal and creativity.
In contrast, Player 2's image lacks clear elements that relate to the prompt, making it less effective in terms of adherence and creativity.
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
"Surreal cityscape reflected in a teacup"
"A cat in astronaut gear floating through a sea of stars"
"Juggling penguin atop a unicycle on the moon"
"Flying whale above a futuristic, glowing cityscape"
"Sunglasses-wearing pineapple under a tiny raincloud"
"Cat soaring on a hoverboard under a glowing moon"