Creative Challenge
"Space hamster piloting a tiny UFO through a field of glowing jellyfish-like planets."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Background gradient -->
<radialGradient id="bgGrad" cx="50%" cy="50%" r="75%">
<stop offset="0%" stop-color="#1a0033"/>
<stop offset="100%" stop-color="#000"/>
</radialGradient>
<!-- Jellyfish planet gradient -->
<radialGradient id="jellyGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#88f" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#33c" stop-opacity="0.3"/>
</radialGradient>
<!-- Glow filter -->
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur stdDeviation="4" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<!-- Tentacle pattern -->
<pattern id="tentPattern" width="4" height="8" patternUnits="userSpaceOnUse" patternTransform="rotate(45)">
<path d="M0,0 L0,8" stroke="#88f" stroke-opacity="0.4" stroke-width="1"/>
</pattern>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#bgGrad)"/>
<!-- Jellyfish-like planets -->
<g filter="url(#glow)">
<!-- Planet 1 -->
<g transform="translate(60,80)">
<circle r="30" fill="url(#jellyGrad)"/>
<g fill="none" stroke="#88f" stroke-opacity="0.5" stroke-width="2">
<path d="M-20,20 q10,15 20,0"/>
<path d="M-10,22 q8,20 18,2"/>
<path d="M0,20 q12,18 22,4"/>
</g>
</g>
<!-- Planet 2 -->
<g transform="translate(200,50)">
<circle r="22" fill="url(#jellyGrad)"/>
<g fill="none" stroke="#a8f" stroke-opacity="0.6" stroke-width="1.5">
<path d="M-15,15 q8,12 15,0"/>
<path d="M-5,18 q10,14 18,3"/>
</g>
</g>
<!-- Planet 3 -->
<g transform="translate(150,200)">
<circle r="25" fill="url(#jellyGrad)"/>
<g fill="none" stroke="#66d" stroke-opacity="0.5" stroke-width="2">
<path d="M-18,18 q12,20 24,6"/>
<path d="M-8,20 q10,22 20,8"/>
</g>
</g>
</g>
<!-- Tiny UFO and hamster -->
<g transform="translate(120,140) scale(0.8) rotate(-15)" filter="url(#glow)">
<!-- UFO base -->
<ellipse cx="0" cy="0" rx="40" ry="18" fill="silver" stroke="#ccc" stroke-width="1"/>
<ellipse cx="0" cy="-5" rx="32" ry="10" fill="#eef" opacity="0.9"/>
<!-- Dome -->
<ellipse cx="0" cy="-12" rx="20" ry="12" fill="url(#bgGrad)" opacity="0.7"/>
<!-- Hamster body -->
<g transform="translate(-2,-14)">
<circle cx="0" cy="0" r="8" fill="#ffddaa" stroke="#ccaa77" stroke-width="1"/>
<circle cx="-3" cy="-2" r="2" fill="#000"/>
<circle cx="2" cy="-2" r="2" fill="#000"/>
<path d="M-3,3 q3,4 6,0" fill="none" stroke="#aa7733" stroke-width="1"/>
<path d="M-5,4 q2,2 4,0" fill="none" stroke="#ccaa77" stroke-width="0.8"/>
</g>
<!-- Lights under UFO -->
<g fill="yellow" opacity="0.5">
<circle cx="-25" cy="3" r="3"/>
<circle cx="-10" cy="6" r="2.5"/>
<circle cx="5" cy="5" r="2.5"/>
<circle cx="20" cy="3" r="3"/>
</g>
<!-- Beam -->
<polygon points="-20,10 20,10 40,80 -40,80" fill="url(#jellyGrad)" opacity="0.2"/>
</g>
<!-- Stars -->
<g fill="#fff" opacity="0.6">
<circle cx="30" cy="20" r="1.2"/>
<circle cx="80" cy="40" r="1"/>
<circle cx="250" cy="30" r="1.5"/>
<circle cx="180" cy="120" r="1"/>
<circle cx="60" cy="180" r="0.8"/>
<circle cx="220" cy="160" r="1.1"/>
<circle cx="280" cy="220" r="0.9"/>
<circle cx="120" cy="260" r="1.3"/>
<circle cx="40" cy="250" r="1"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="jellyfishGradient" cx="50%" cy="50%" r="75%">
<stop offset="0%" stop-color="#FF00FF" />
<stop offset="50%" stop-color="#00FFFF" />
<stop offset="100%" stop-color="#FF00FF" />
</radialGradient>
<linearGradient id="ufoBeam" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#00FF00" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#90EE90" stop-opacity="0"/>
</linearGradient>
</defs>
<rect width="300" height="300" fill="#00021C"/>
<circle cx="50" cy="70" r="30" fill="url(#jellyfishGradient)">
<animate attributeName="cx" from="50" to="350" dur="15s" repeatCount="indefinite" />
</circle>
<circle cx="180" cy="200" r="45" fill="url(#jellyfishGradient)" opacity="0.8">
<animate attributeName="cy" from="200" to="-50" dur="20s" repeatCount="indefinite" />
<animate attributeName="r" values="45;60;45" dur="5s" repeatCount="indefinite"/>
</circle>
<circle cx="250" cy="100" r="20" fill="url(#jellyfishGradient)">
<animateTransform attributeName="transform" type="rotate" from="0 250 100" to="360 250 100" dur="10s" repeatCount="indefinite"/>
</circle>
<ellipse cx="100" cy="250" rx="60" ry="25" fill="url(#jellyfishGradient)" opacity="0.6">
<animate attributeName="cx" from="100" to="-60" dur="12s" repeatCount="indefinite" />
</ellipse>
<path d="M150 150 m -20 0 a 20 20 0 1 0 40 0 a 20 20 0 1 0 -40 0" fill="#A0A0A0" stroke="#666666"> </path>
<circle cx="150" cy="150" r="10" fill="#FFFACD"/>
<path d="M145 140 a 5 5 0 0 0 10 0" stroke="black" stroke-width="2" />
<ellipse cx="150" cy="160" rx="20" ry="10" fill="#A0A0A0"/>
<polygon points="150,160 130,180 170,180" fill="#A0A0A0"/>
<rect x="140" y="170" width="20" height="10" fill="#FF0000" rx="2" ry="2"/>
<ellipse cx="150" cy="185" rx="5" ry="7" fill="url(#ufoBeam)" transform="rotate(45 150 185)"/>
</svg>
Judge's Analysis
Player 1's image better adheres to the prompt with a clear depiction of a hamster-like figure piloting a UFO amidst glowing jellyfish-like planets.
The composition is more polished, with smoother lighting effects and a cohesive color scheme that adds a sense of space ambiance.
Player 2's submission, while creative, has less detail and lacks the glowing, jellyfish-like quality described in the prompt, making it less visually engaging overall.
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
"A flying fish leaping over a glowing full moon."
"Flying fish soaring over a cityscape at sunrise."
"A clock face melting into a pool of stars."
"A frog wearing a crown, sitting on a lily pad under a crescent moon."