Creative Challenge
"Astronaut penguin juggling planets in space"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with starry space effect -->
<defs>
<radialGradient id="spaceGrad" cx="150" cy="150" r="150" fx="150" fy="150">
<stop offset="0" stop-color="#0a0a2e" stop-opacity="1"/>
<stop offset="1" stop-color="#00000f" stop-opacity="0.3"/>
</radialGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#spaceGrad)"/>
<!-- Stars -->
<g id="stars">
<circle cx="50" cy="50" r="1" fill="white" opacity="0.5"/>
<circle cx="200" cy="80" r="1" fill="white" opacity="0.5"/>
<circle cx="100" cy="200" r="1" fill="white" opacity="0.5"/>
<circle cx="250" cy="250" r="1" fill="white" opacity="0.5"/>
</g>
<!-- Planets being juggled -->
<g id="planets">
<!-- Red Planet -->
<circle cx="100" cy="100" r="20" fill="url(#redGrad)" filter="url(#glow)">
<animateTransform attributeName="transform" type="rotate" from="0 100 100" to="360 100 100" dur="4s" repeatCount="indefinite"/>
</circle>
<!-- Green Planet -->
<circle cx="200" cy="100" r="20" fill="url(#greenGrad)" filter="url(#glow)">
<animateTransform attributeName="transform" type="rotate" from="0 200 100" to="360 200 100" dur="6s" repeatCount="indefinite"/>
</circle>
<!-- Blue Planet -->
<circle cx="150" cy="200" r="20" fill="url(#blueGrad)" filter="url(#glow)">
<animateTransform attributeName="transform" type="rotate" from="0 150 200" to="360 150 200" dur="8s" repeatCount="indefinite"/>
</circle>
</g>
<!-- Astronaut Penguin -->
<g id="penguin" transform="translate(150,150)">
<!-- Body -->
<ellipse cx="0" cy="0" rx="30" ry="40" fill="#000" opacity="0.9"/>
<!-- Head -->
<ellipse cx="0" cy="-40" rx="20" ry="25" fill="#fff"/>
<!-- Eyes -->
<circle cx="-10" cy="-35" r="8" fill="#000"/>
<circle cx="10" cy="-35" r="8" fill="#000"/>
<!-- Pupils -->
<circle cx="-10" cy="-35" r="4" fill="#ff4400"/>
<circle cx="10" cy="-35" r="4" fill="#ff4400"/>
<!-- Beak -->
<path d="M0,-50 L-10,-45 L10,-45 Z" fill="#ff6600"/>
<!-- Flippers -->
<path d="M-25,-20 L-15,-30 L-5,-20 Z" fill="#000"/>
<path d="M25,-20 L15,-30 L5,-20 Z" fill="#000"/>
<!-- Legs -->
<line x1="-15" y1="40" x2="-5" y2="50" stroke="#ff6600" stroke-width="4"/>
<line x1="15" y1="40" x2="5" y2="50" stroke="#ff6600" stroke-width="4"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<!-- Background Gradient -->
<radialGradient id="bgGradient" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#0b003b" />
<stop offset="100%" stop-color="#000000" />
</radialGradient>
<!-- Helmet Gradient -->
<radialGradient id="helmetGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ffffff" />
<stop offset="100%" stop-color="#a0a0a0" />
</radialGradient>
<!-- Planet Gradients -->
<radialGradient id="planet1" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ff7f50" />
<stop offset="100%" stop-color="#ff4500" />
</radialGradient>
<radialGradient id="planet2" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#1e90ff" />
<stop offset="100%" stop-color="#104e8b" />
</radialGradient>
<radialGradient id="planet3" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#32cd32" />
<stop offset="100%" stop-color="#006400" />
</radialGradient>
<radialGradient id="planet4" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#dda0dd" />
<stop offset="100%" stop-color="#800080" />
</radialGradient>
<!-- Star Pattern -->
<pattern id="stars" patternUnits="userSpaceOnUse" width="4" height="4">
<circle cx="2" cy="2" r="0.5" fill="white" />
</pattern>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#bgGradient)" />
<!-- Stars -->
<rect width="300" height="300" fill="url(#stars)" opacity="0.2" />
<circle cx="50" cy="30" r="1.5" fill="white" />
<circle cx="120" cy="80" r="1" fill="white" />
<circle cx="200" cy="50" r="1.2" fill="white" />
<circle cx="250" cy="120" r="1" fill="white" />
<circle cx="80" cy="200" r="1.3" fill="white" />
<circle cx="160" cy="220" r="1" fill="white" />
<circle cx="240" cy="200" r="1.5" fill="white" />
<!-- Astronaut Penguin -->
<g transform="translate(150, 180)">
<!-- Body -->
<ellipse cx="0" cy="20" rx="20" ry="30" fill="#ffffff" stroke="#000000" stroke-width="2"/>
<ellipse cx="0" cy="10" rx="15" ry="25" fill="#000000" stroke="#000000" stroke-width="2"/>
<!-- Head -->
<circle cx="0" cy="-10" r="12" fill="#ffffff" stroke="#000000" stroke-width="2"/>
<!-- Eyes -->
<circle cx="-4" cy="-12" r="2" fill="#000000"/>
<circle cx="4" cy="-12" r="2" fill="#000000"/>
<!-- Beak -->
<path d="M0,-10 L3,-8 L0,-6 Z" fill="#ffcc00"/>
<!-- Helmet -->
<circle cx="0" cy="-10" r="14" fill="url(#helmetGradient)" stroke="#cccccc" stroke-width="2" opacity="0.8"/>
<!-- Arms -->
<path d="M-20,10 Q-30,0 -20,-10" stroke="#000000" stroke-width="2" fill="none"/>
<path d="M20,10 Q30,0 20,-10" stroke="#000000" stroke-width="2" fill="none"/>
<!-- Backpack -->
<rect x="-22" y="-5" width="44" height="20" fill="#333333" stroke="#000000" stroke-width="1"/>
</g>
<!-- Juggling Planets -->
<g>
<!-- Planet 1 -->
<circle cx="80" cy="80" r="10" fill="url(#planet1)" stroke="#ffa07a" stroke-width="1"/>
<ellipse cx="80" cy="80" rx="15" ry="3" fill="none" stroke="#ffffff" stroke-dasharray="4,2"/>
<!-- Planet 2 -->
<circle cx="220" cy="60" r="12" fill="url(#planet2)" stroke="#00bfff" stroke-width="1"/>
<circle cx="220" cy="60" r="14" fill="none" stroke="#ffffff" stroke-dasharray="4,2"/>
<!-- Planet 3 -->
<circle cx="70" cy="220" r="8" fill="url(#planet3)" stroke="#32cd32" stroke-width="1"/>
<path d="M70,212 a8,8 0 1,0 0,16" stroke="#ffffff" stroke-dasharray="4,2" fill="none"/>
<!-- Planet 4 -->
<circle cx="230" cy="200" r="9" fill="url(#planet4)" stroke="#dda0dd" stroke-width="1"/>
<ellipse cx="230" cy="200" rx="11" ry="2" fill="none" stroke="#ffffff" stroke-dasharray="4,2"/>
</g>
<!-- Orbital Paths -->
<g stroke="#ffffff" stroke-width="0.5" stroke-dasharray="2,2" fill="none">
<circle cx="150" cy="150" r="70"/>
<circle cx="150" cy="150" r="90"/>
<circle cx="150" cy="150" r="110"/>
<circle cx="150" cy="150" r="130"/>
</g>
</svg>
Judge's Analysis
Player 2's submission more effectively captures the theme of an astronaut penguin juggling planets in space.
The image creatively incorporates orbits and planets, clearly conveying the juggling concept with technical precision and visual appeal.
In contrast, Player 1's image lacks elements that clearly indicate juggling or the presence of planets, making it less aligned with the prompt.
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 cat wearing a UFO as a hat, hovering above candy mountains"
"Umbrella growing from a teacup"
"A neon jellyfish orbiting a giant silver apple under a starry sky"
"Flying fish with balloon wings over a cityscape"
"Surreal clock with melting numbers and flying teacup"
"Tomato moon cheese cityscape under a sunflower sun"