Creative Challenge
"Banana rocket ship blasting through a galaxy of spaghetti meteors"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="galaxyGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#1a1a2e" />
<stop offset="100%" stop-color="#16213e" />
</radialGradient>
<linearGradient id="bananaGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#FFD700" />
<stop offset="100%" stop-color="#FFA500" />
</linearGradient>
<pattern id="spaghettiPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<path d="M10 0 Q15 5 10 10 T10 20" stroke="#8B4513" stroke-width="2" fill="none" />
<path d="M0 10 Q5 15 10 10 T20 10" stroke="#8B4513" stroke-width="2" fill="none" />
</pattern>
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceAlpha" stdDeviation="3" result="blur" />
<feMerge>
<feMergeNode in="blur" />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#galaxyGradient)" />
<circle cx="150" cy="150" r="50" fill="url(#spaghettiPattern)" filter="url(#glow)" />
<path d="M150 100 L130 200 L170 200 Z" fill="#FFD700" />
<path d="M150 100 L130 200 L170 200 Z" fill="url(#bananaGradient)" opacity="0.8" />
<ellipse cx="150" cy="100" rx="20" ry="10" fill="#FF6347" />
<polygon points="150,80 140,100 160,100" fill="#FF6347" />
<path d="M150 200 Q130 250 170 250 T150 200" fill="#FFD700" />
<path d="M150 200 Q130 250 170 250 T150 200" fill="url(#bananaGradient)" opacity="0.8" />
<circle cx="150" cy="250" r="10" fill="#FF6347" />
<path d="M150 250 Q130 280 170 280 T150 250" fill="#FF6347" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="galaxyGradient" cx="150" cy="150" r="150" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#2a2a72"/>
<stop offset="100%" stop-color="#009ffd"/>
</radialGradient>
<linearGradient id="spaghettiGradient" x1="0" x2="1" y1="0" y2="1">
<stop offset="0%" stop-color="#ffda79"/>
<stop offset="100%" stop-color="#ff9f43"/>
</linearGradient>
<pattern id="spaghettiPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="3" fill="url(#spaghettiGradient)"/>
</pattern>
</defs>
<!-- Background Galaxy -->
<rect width="300" height="300" fill="url(#galaxyGradient)"/>
<!-- Banana Rocket Ship -->
<g transform="translate(120, 60) rotate(-30)">
<path d="M30 0 Q60 15 70 50 Q60 85 30 100 Q0 85 10 50 Q0 15 30 0 Z" fill="#f7b32b"/>
<path d="M25 0 A10 10 0 0 0 35 0 L30 100 A5 5 0 0 0 25 100 Z" fill="#ffa726"/>
<ellipse cx="30" cy="30" rx="5" ry="5" fill="white"/>
</g>
<!-- Rocket Thruster Flames -->
<g transform="translate(150, 180)">
<path d="M0 0 Q-15 30 0 60 Q15 30 0 0 Z" fill="orangered"/>
<path d="M0 0 Q-10 20 0 40 Q10 20 0 0 Z" fill="yellow"/>
<path d="M0 0 Q-5 10 0 20 Q5 10 0 0 Z" fill="#ffffff90"/>
</g>
<!-- Spaghetti Meteors -->
<g fill="url(#spaghettiPattern)">
<circle cx="50" cy="250" r="15"/>
<circle cx="250" cy="50" r="10"/>
<circle cx="180" cy="90" r="20"/>
<circle cx="90" cy="200" r="10"/>
<circle cx="220" cy="160" r="15"/>
</g>
</svg>
Judge's Analysis
Player 2's submission more effectively captures the whimsical concept of a 'Banana rocket ship blasting through a galaxy of spaghetti meteors' with a clear depiction of a banana-shaped object and meteor-like elements.
The use of colors and composition creates a dynamic and visually appealing scene.
Player 1's image, while creative, is less clear in representing the prompt and lacks the immediate visual association with the concept.
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
"Squirrel DJ spinning acorn records"
"A floating island with clockwork trees under a starry night sky"
"An umbrella tree growing under a waterfall"
"A glowing owl in a neon cityscape at night"
"Skeletal octopus plays a luminous xylophone under a bioluminescent sea"
"A giant cat knitting with skyscraper-sized yarn in a cityscape"