Creative Challenge
"A steampunk jellyfish with mechanical tentacles floating in a cloud-filled sky"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Sky -->
<rect x="0" y="0" width="300" height="300" fill="url(#sky-gradient)" />
<linearGradient id="sky-gradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#87CEEB" />
<stop offset="1" stop-color="#ADD8E6" />
</linearGradient>
<!-- Clouds -->
<symbol id="cloud">
<circle cx="50" cy="50" r="40" fill="#FFFFFF" />
<circle cx="70" cy="50" r="30" fill="#FFFFFF" />
<circle cx="90" cy="50" r="20" fill="#FFFFFF" />
</symbol>
<use xlink:href="#cloud" x="50" y="50" transform="scale(0.5)" />
<use xlink:href="#cloud" x="150" y="70" transform="scale(0.7)" />
<use xlink:href="#cloud" x="250" y="90" transform="scale(0.9)" />
<!-- Jellyfish Body -->
<circle cx="150" cy="150" r="60" fill="url(#jellyfish-gradient)" />
<linearGradient id="jellyfish-gradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#FFC080" />
<stop offset="1" stop-color="#FFA07A" />
</linearGradient>
<!-- Mechanical Tentacles -->
<g transform="rotate(45 150 150)">
<rect x="120" y="120" width="30" height="80" fill="#666666" rx="5" />
<rect x="120" y="200" width="30" height="80" fill="#666666" rx="5" />
<rect x="120" y="280" width="30" height="80" fill="#666666" rx="5" />
</g>
<g transform="rotate(-45 150 150)">
<rect x="180" y="120" width="30" height="80" fill="#666666" rx="5" />
<rect x="180" y="200" width="30" height="80" fill="#666666" rx="5" />
<rect x="180" y="280" width="30" height="80" fill="#666666" rx="5" />
</g>
<!-- Gear Details -->
<circle cx="150" cy="150" r="10" fill="#666666" />
<circle cx="140" cy="140" r="5" fill="#666666" />
<circle cx="160" cy="140" r="5" fill="#666666" />
<circle cx="140" cy="160" r="5" fill="#666666" />
<circle cx="160" cy="160" r="5" fill="#666666" />
<!-- Rivets -->
<circle cx="125" cy="125" r="2" fill="#666666" />
<circle cx="175" cy="125" r="2" fill="#666666" />
<circle cx="125" cy="175" r="2" fill="#666666" />
<circle cx="175" cy="175" r="2" fill="#666666" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="jellyfishGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#ff8c00;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ff1493;stop-opacity:1" />
</radialGradient>
<linearGradient id="tentacleGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#8b4513;stop-opacity:1" />
<stop offset="100%" style="stop-color:#d2691e;stop-opacity:1" />
</linearGradient>
<filter id="glow">
<feGaussianBlur in="SourceGraphic" stdDeviation="5" result="blur" />
<feMerge>
<feMergeNode in="blur" />
<feMergeNode />
</feMerge>
</filter>
</defs>
<rect width="100%" height="100%" fill="skyblue" />
<g filter="url(#glow)">
<ellipse cx="150" cy="100" rx="40" ry="60" fill="url(#jellyfishGradient)" />
<circle cx="150" cy="80" r="15" fill="white" />
</g>
<g>
<path d="M150,160 Q120,220 80,180 Q100,210 120,215 Q90,225 80,250 Q100,245 150,240 Q200,245 220,250 Q210,225 180,215 Q200,210 180,180 Q160,220 150,160 Z" fill="none" stroke="url(#tentacleGradient)" stroke-width="5" />
<path d="M150,160 Q130,220 100,180 Q110,210 125,213 Q95,220 70,250 Q85,245 150,240 Q220,245 230,250 Q210,220 170,215 Q190,210 160,180 Q150,220 150,160 Z" fill="none" stroke="url(#tentacleGradient)" stroke-width="5" />
</g>
<g>
<ellipse cx="50" cy="250" rx="40" ry="10" fill="white" opacity="0.2" />
<ellipse cx="250" cy="250" rx="40" ry="10" fill="white" opacity="0.2" />
<ellipse cx="150" cy="260" rx="50" ry="20" fill="white" opacity="0.3" />
</g>
<g>
<circle cx="20" cy="30" r="10" fill="white" opacity="0.5" />
<circle cx="250" cy="50" r="15" fill="white" opacity="0.4" />
<circle cx="70" cy="70" r="12" fill="white" opacity="0.6" />
<circle cx="220" cy="90" r="10" fill="white" opacity="0.5" />
<circle cx="150" cy="40" r="18" fill="white" opacity="0.3" />
</g>
</svg>
Judge's Analysis
Player 2's submission captures the essence of a steampunk jellyfish with the glowing, mechanical elements and the ethereal sky setting.
The use of warm colors and floating orbs adds a sense of whimsy and aligns well with the theme.
Although abstract, it adheres more closely to the prompt compared to Player 1's submission.
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"