Creative Challenge
"A jellyfish floating above a cityscape, its tentacles forming whimsical street lights"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<radialGradient id="jellyfishGradient" cx="0.5" cy="0.5" r="0.5" fx="0.35" fy="0.35">
<stop offset="0%" stop-color="#f06" />
<stop offset="50%" stop-color="#ffcc00" />
<stop offset="100%" stop-color="transparent" />
</radialGradient>
<linearGradient id="tentacleGradient" x1="0" x2="1" y1="0" y2="0">
<stop offset="0%" stop-color="#ffcc00" />
<stop offset="100%" stop-color="#ff6699" />
</linearGradient>
<pattern id="buildingPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="5" height="10" fill="#444" />
<rect x="5" y="0" width="5" height="10" fill="#666" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#jellyfishGradient)" />
<rect y="150" width="300" height="150" fill="url(#buildingPattern)" />
<circle cx="150" cy="80" r="50" fill="#ffcc00" opacity="0.8" />
<ellipse cx="150" cy="100" rx="40" ry="60" fill="#ff6699" opacity="0.8" />
<path d="M150,150 Q100,200 150,250 Q200,200 150,150Z" fill="url(#tentacleGradient)" />
<path d="M150,150 Q120,200 150,250 Q180,200 150,150Z" fill="url(#tentacleGradient)" />
<path d="M150,150 Q130,200 150,250 Q170,200 150,150Z" fill="url(#tentacleGradient)" />
<circle cx="150" cy="250" r="5" fill="#ffcc00" />
<circle cx="130" cy="225" r="5" fill="#ffcc00" />
<circle cx="170" cy="225" r="5" fill="#ffcc00" />
<circle cx="120" cy="200" r="5" fill="#ffcc00" />
<circle cx="180" cy="200" r="5" fill="#ffcc00" />
<circle cx="100" cy="175" r="5" fill="#ffcc00" />
<circle cx="200" cy="175" r="5" fill="#ffcc00" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Gradient background -->
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#1a3a6f;stop-opacity:1" />
<stop offset="100%" style="stop-color:#4a8cff;stop-opacity:1" />
</linearGradient>
<radialGradient id="jellyGlow" cx="150" cy="100" r="100" fx="150" fy="100">
<stop offset="0%" style="stop-color:#ff61d2;stop-opacity:0.8" />
<stop offset="100%" style="stop-color:#ff61d2;stop-opacity:0" />
</radialGradient>
<filter id="jellyFilter">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#skyGradient)"/>
<!-- Stars -->
<g id="stars">
<circle cx="50" cy="50" r="1" fill="white"/>
<circle cx="150" cy="80" r="1" fill="white"/>
<circle cx="250" cy="60" r="1" fill="white"/>
<circle cx="120" cy="120" r="1" fill="white"/>
<circle cx="180" cy="140" r="1" fill="white"/>
<circle cx="230" cy="160" r="1" fill="white"/>
</g>
<!-- Cityscape -->
<g id="city">
<rect x="50" y="180" width="40" height="100" fill="#4a4a4a" rx="5"/>
<rect x="100" y="190" width="30" height="90" fill="#5a5a5a" rx="3"/>
<rect x="150" y="170" width="50" height="110" fill="#666" rx="4"/>
<rect x="220" y="185" width="30" height="85" fill="#5a5a5a" rx="3"/>
<!-- Windows -->
<rect x="55" y="200" width="10" height="10" fill="#666"/>
<rect x="85" y="200" width="10" height="10" fill="#666"/>
<rect x="105" y="210" width="10" height="10" fill="#666"/>
<rect x="155" y="180" width="10" height="10" fill="#666"/>
<rect x="175" y="180" width="10" height="10" fill="#666"/>
<rect x="225" y="195" width="10" height="10" fill="#666"/>
</g>
<!-- Jellyfish -->
<g id="jellyfish">
<!-- Jellyfish body -->
<circle cx="150" cy="100" r="80" fill="url(#jellyGlow)" filter="url(#jellyFilter)"/>
<!-- Tentacles as street lights -->
<path d="M150,180 Q200,220 220,200 L220,200 Q230,180 210,170 L210,170 Q200,160 180,160 L180,160 Q170,160 160,170 L160,170 Q150,180 140,180 L140,180 Q130,180 120,170 L120,170 Q110,160 100,160 L100,160 Q90,160 80,170 L80,170 Q70,180 60,180 L60,180 Q50,180 40,190 L40,190"
stroke="#ffd700" stroke-width="2" fill="none"/>
<!-- Tentacle bulbs -->
<circle cx="220" cy="200" r="4" fill="#ffeb3b"/>
<circle cx="210" cy="170" r="4" fill="#ffeb3b"/>
<circle cx="180" cy="160" r="4" fill="#ffeb3b"/>
<circle cx="160" cy="170" r="4" fill="#ffeb3b"/>
<circle cx="120" cy="170" r="4" fill="#ffeb3b"/>
<circle cx="100" cy="160" r="4" fill="#ffeb3b"/>
<circle cx="80" cy="170" r="4" fill="#ffeb3b"/>
<circle cx="60" cy="180" r="4" fill="#ffeb3b"/>
<circle cx="40" cy="190" r="4" fill="#ffeb3b"/>
</g>
</svg>
Judge's Analysis
Player 2's image more clearly depicts the concept of a jellyfish above a cityscape with its tentacles forming street lights, using a recognizable city skyline and a whimsical light pattern.
The composition is simple yet effective, enhancing visual appeal and adherence to the prompt.
Player 1's image is more abstract and less clear in conveying the idea of a jellyfish and streetlights.
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
"Flamingo playing a saxophone under a giant mushroom"
"Cloud surfing cat with starry eyes above a candy cane forest"
"Floating cityscape on a giant tortoise shell"
"An owl wearing steampunk goggles, perched on a crescent moon"
"Flying cat in a tuxedo, holding an umbrella, soaring above giant cupcakes"
"Elon Musk as a cybernetic centaur exploring Mars"