Creative Challenge
"Clockwork jellyfish floating above a futuristic cityscape at twilight"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Twilight background gradient -->
<defs>
<linearGradient id="twilight" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#2c3e50"/>
<stop offset="50%" stop-color="#4a90e2"/>
<stop offset="100%" stop-color="#1a2930"/>
</linearGradient>
<!-- Clockwork pattern for jellyfish bell -->
<pattern id="clockwork" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="2" fill="#f1c40f" />
<path d="M 0 0 L 10 10 M 10 0 L 0 10" stroke="#f39c12" stroke-width="0.5"/>
</pattern>
<!-- Metallic gear gradient -->
<radialGradient id="gearGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#bdc3c7"/>
<stop offset="100%" stop-color="#7f8c8d"/>
</radialGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#twilight)" />
<!-- Futuristic cityscape -->
<g id="cityscape">
<!-- Building 1 -->
<rect x="10" y="180" width="30" height="90" fill="#34495e"/>
<rect x="15" y="185" width="5" height="5" fill="#f39c12"/>
<rect x="25" y="200" width="5" height="5" fill="#f39c12"/>
<!-- Building 2 -->
<rect x="50" y="160" width="25" height="110" fill="#2c3e50"/>
<rect x="55" y="165" width="5" height="5" fill="#e67e22"/>
<rect x="65" y="180" width="5" height="5" fill="#e67e22"/>
<!-- Building 3 -->
<rect x="85" y="190" width="35" height="80" fill="#3b3b98"/>
<rect x="90" y="195" width="5" height="5" fill="#e74c3c"/>
<rect x="110" y="205" width="5" height="5" fill="#e74c3c"/>
<!-- Building 4 -->
<rect x="125" y="150" width="30" height="120" fill="#22313f"/>
<rect x="130" y="155" width="5" height="5" fill="#9b59b6"/>
<rect x="140" y="170" width="5" height="5" fill="#9b59b6"/>
<!-- Building 5 -->
<rect x="165" y="170" width="40" height="100" fill="#1abc9c"/>
<rect x="170" y="175" width="5" height="5" fill="#16a085"/>
<rect x="190" y="185" width="5" height="5" fill="#16a085"/>
<!-- Building 6 -->
<rect x="210" y="160" width="25" height="110" fill="#8e44ad"/>
<rect x="215" y="165" width="5" height="5" fill="#c0392b"/>
<rect x="225" y="180" width="5" height="5" fill="#c0392b"/>
<!-- Building 7 -->
<rect x="245" y="180" width="30" height="90" fill="#27ae60"/>
<rect x="250" y="185" width="5" height="5" fill="#2ecc71"/>
<rect x="260" y="200" width="5" height="5" fill="#2ecc71"/>
</g>
<!-- Clockwork Jellyfish -->
<g id="jellyfish" transform="translate(150, 90)">
<!-- Bell (head) of the jellyfish with a clockwork pattern -->
<ellipse cx="0" cy="0" rx="40" ry="30" fill="url(#clockwork)" stroke="#f39c12" stroke-width="2"/>
<!-- Gears overlay on the bell -->
<g>
<circle cx="-15" cy="-5" r="8" fill="url(#gearGradient)" stroke="#7f8c8d" stroke-width="1"/>
<circle cx="20" cy="10" r="5" fill="url(#gearGradient)" stroke="#7f8c8d" stroke-width="1"/>
<circle cx="5" cy="-10" r="4" fill="url(#gearGradient)" stroke="#7f8c8d" stroke-width="1"/>
<!-- Gear teeth on one gear -->
<g transform="translate(-15,-5)">
<path d="M -8 0 L -12 -3 L -8 -6 L -4 -3 Z" fill="#f1c40f"/>
<path d="M 8 0 L 12 -3 L 8 -6 L 4 -3 Z" fill="#f1c40f"/>
<path d="M 0 -8 L 3 -12 L 6 -8 L 3 -4 Z" fill="#f1c40f"/>
<path d="M 0 8 L 3 12 L 6 8 L 3 4 Z" fill="#f1c40f"/>
</g>
</g>
<!-- Tentacles -->
<g stroke="#f39c12" stroke-width="2" fill="none" stroke-linecap="round">
<path d="M -20,20 C -30,40, -25,60, -15,80" />
<path d="M -5,22 C -10,40, -5,60, 5,78" />
<path d="M 10,20 C 20,38, 15,58, 10,80" />
<path d="M 25,18 C 30,35, 28,55, 20,75" />
<path d="M -35,15 C -40,30, -35,45, -30,60" />
<path d="M 35,15 C 40,30, 35,45, 30,60" />
</g>
<!-- Mechanical details on tentacles -->
<g fill="#f1c40f" stroke="none">
<circle cx="-20" cy="20" r="1.5"/>
<circle cx="-5" cy="22" r="1.5"/>
<circle cx="10" cy="20" r="1.5"/>
<circle cx="25" cy="18" r="1.5"/>
<circle cx="-35" cy="15" r="1.5"/>
<circle cx="35" cy="15" r="1.5"/>
</g>
</g>
<!-- Floating sparkles to evoke a futuristic atmosphere -->
<g id="sparkles">
<circle cx="80" cy="50" r="1.5" fill="#ffffff" opacity="0.8"/>
<circle cx="220" cy="40" r="2" fill="#ffffff" opacity="0.8"/>
<circle cx="150" cy="20" r="1" fill="#ffffff" opacity="0.8"/>
<circle cx="200" cy="80" r="1.5" fill="#ffffff" opacity="0.8"/>
<circle cx="60" cy="80" r="1.2" fill="#ffffff" opacity="0.8"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="twilightGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#87CEFA"/>
<stop offset="100%" stop-color="#FF69B4"/>
</linearGradient>
<radialGradient id="clockworkGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#C0C0C0"/>
<stop offset="100%" stop-color="#333333"/>
</radialGradient>
<pattern id="cityPattern" patternUnits="userSpaceOnUse" width="100" height="100">
<rect width="100" height="100" fill="#1E1E1E"/>
<g>
<rect x="10" y="10" width="10" height="20" fill="#808080"/>
<rect x="20" y="20" width="10" height="10" fill="#808080"/>
<rect x="30" y="30" width="10" height="10" fill="#808080"/>
<rect x="40" y="40" width="10" height="10" fill="#808080"/>
<rect x="50" y="50" width="10" height="10" fill="#808080"/>
<rect x="60" y="60" width="10" height="10" fill="#808080"/>
<rect x="70" y="70" width="10" height="10" fill="#808080"/>
<rect x="80" y="80" width="10" height="10" fill="#808080"/>
<rect x="90" y="90" width="10" height="10" fill="#808080"/>
</g>
</pattern>
</defs>
<rect width="100%" height="100%" fill="url(#twilightGradient)"/>
<g transform="translate(150, 150)">
<circle r="50" fill="url(#clockworkGradient)"/>
<g transform="rotate(45)">
<rect x="-50" y="-50" width="100" height="10" fill="#FFD700"/>
<rect x="-50" y="40" width="100" height="10" fill="#FFD700"/>
<rect x="-50" y="-40" width="100" height="10" fill="#FFD700"/>
</g>
<g transform="rotate(135)">
<rect x="-50" y="-50" width="100" height="10" fill="#FFD700"/>
<rect x="-50" y="40" width="100" height="10" fill="#FFD700"/>
<rect x="-50" y="-40" width="100" height="10" fill="#FFD700"/>
</g>
<g transform="rotate(225)">
<rect x="-50" y="-50" width="100" height="10" fill="#FFD700"/>
<rect x="-50" y="40" width="100" height="10" fill="#FFD700"/>
<rect x="-50" y="-40" width="100" height="10" fill="#FFD700"/>
</g>
<g transform="rotate(315)">
<rect x="-50" y="-50" width="100" height="10" fill="#FFD700"/>
<rect x="-50" y="40" width="100" height="10" fill="#FFD700"/>
<rect x="-50" y="-40" width="100" height="10" fill="#FFD700"/>
</g>
</g>
<g transform="translate(150, 200)">
<g transform="scale(1.5)">
<circle cx="0" cy="0" r="20" fill="#FFD700"/>
<circle cx="0" cy="0" r="15" fill="url(#clockworkGradient)"/>
<circle cx="0" cy="0" r="10" fill="#FFD700"/>
<circle cx="0" cy="0" r="5" fill="url(#clockworkGradient)"/>
</g>
</g>
<g transform="translate(0, 150)">
<rect width="300" height="150" fill="url(#cityPattern)"/>
<rect x="50" y="50" width="50" height="50" fill="#808080"/>
<rect x="100" y="100" width="50" height="50" fill="#808080"/>
<rect x="150" y="150" width="50" height="50" fill="#808080"/>
<rect x="200" y="200" width="50" height="50" fill="#808080"/>
<rect x="250" y="250" width="50" height="50" fill="#808080"/>
</g>
</svg>
Judge's Analysis
Player 1's submission better adheres to the prompt with a clear depiction of a clockwork jellyfish floating above a futuristic cityscape at twilight.
The use of vibrant colors and a recognizable jellyfish form enhances the visual appeal and creativity.
In contrast, Player 2's image lacks clarity and does not clearly represent the elements of the prompt, making it less effective in terms of both creativity and adherence.
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
"Octopus wearing a detective hat, holding a magnifying glass under the sea"
"Floating city above candy clouds"
"Rainbow octopus playing cello on a cloud"
"Top hat with a galaxy spilling out"
"Spider sipping a cappuccino on a relaxed rainy day"
"Floating cityscape on the back of a giant turtle, cubist style"