Creative Challenge
"A rocket-powered banana soaring past a surprised flock of flying turtles."
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#87CEEB" />
<!-- Sun -->
<circle cx="250" cy="50" r="25" fill="#FFD700" />
<!-- Rocket-Powered Banana -->
<path d="M50,200 C50,100 150,100 200,50 C240,20 270,20 280,40 C290,60 250,100 240,120 C220,150 210,180 210,200" fill="#FFD700" />
<polygon points="210,200 210,190 220,194" fill="#8B4513" />
<!-- Rocket Flames -->
<polygon points="200,200 190,210 180,200" fill="#FF4500">
<animate attributeName="points" dur="0.5s" repeatCount="indefinite" keyTimes="0;0.5;1" values="200,200 190,210 180,200; 200,200 195,220 190,200; 200,200 190,210 180,200" />
</polygon>
<!-- Flock of Flying Turtles -->
<circle cx="50" cy="50" r="10" fill="#8B4513">
<animateMotion dur="5s" repeatCount="indefinite">
<mpath href="#turtlePath1" />
</animateMotion>
</circle>
<circle cx="70" cy="60" r="10" fill="#8B4513">
<animateMotion dur="5s" repeatCount="indefinite">
<mpath href="#turtlePath2" />
</animateMotion>
</circle>
<circle cx="90" cy="70" r="10" fill="#8B4513">
<animateMotion dur="5s" repeatCount="indefinite">
<mpath href="#turtlePath3" />
</animateMotion>
</circle>
<!-- Paths for Flying Turtles -->
<path id="turtlePath1" d="M50,50 Q100,30 120,80" fill="none" />
<path id="turtlePath2" d="M70,60 Q110,40 130,90" fill="none" />
<path id="turtlePath3" d="M90,70 Q120,50 140,100" fill="none" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" shape-rendering="geometricPrecision" >
<defs>
<!-- Rocket flame gradient -->
<radialGradient id="flameGradient" cx="0.5" cy="0.6" r="0.8" fx="0.5" fy="0.6">
<stop offset="0%" stop-color="#fffacd" />
<stop offset="40%" stop-color="#ffb400" />
<stop offset="80%" stop-color="#ff2e00" />
<stop offset="100%" stop-color="#7f0000" />
</radialGradient>
<!-- Banana gradient -->
<linearGradient id="bananaGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#fff275" />
<stop offset="50%" stop-color="#f5d547" />
<stop offset="100%" stop-color="#c3a800" />
</linearGradient>
<!-- Banana shadow gradient -->
<radialGradient id="bananaShadow" cx="0.3" cy="0.7" r="0.8">
<stop offset="50%" stop-color="rgba(0,0,0,0.2)" />
<stop offset="100%" stop-color="rgba(0,0,0,0)" />
</radialGradient>
<!-- Turtle shell pattern -->
<pattern id="shellPattern" patternUnits="userSpaceOnUse" width="15" height="15" patternTransform="rotate(15)">
<circle cx="7.5" cy="7.5" r="6" fill="url(#shellGrad)" />
<path d="M7.5 1 L7.5 14 M1 7.5 L14 7.5 M3 3 L12 12 M3 12 L12 3" stroke="#4C6B3F" stroke-width="1"/>
</pattern>
<radialGradient id="shellGrad" cx="0.5" cy="0.5" r="0.7">
<stop offset="20%" stop-color="#6a8c4f" />
<stop offset="100%" stop-color="#2e4718" />
</radialGradient>
<!-- Turtle body gradient -->
<radialGradient id="turtleBody" cx="0.5" cy="0.5" r="0.7">
<stop offset="10%" stop-color="#87b260" />
<stop offset="90%" stop-color="#43682a" />
</radialGradient>
<!-- Turtle eye gradient -->
<radialGradient id="eyeGradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#fff" />
<stop offset="100%" stop-color="#000" />
</radialGradient>
<!-- Sky background gradient -->
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#00294d" />
<stop offset="100%" stop-color="#00509e" />
</linearGradient>
<!-- Smoke puff gradient -->
<radialGradient id="smokePuff" cx="0.5" cy="0.5" r="0.5">
<stop offset="20%" stop-color="rgba(255,255,255,0.6)" />
<stop offset="100%" stop-color="rgba(255,255,255,0)" />
</radialGradient>
<!-- Rocket window gradient -->
<radialGradient id="windowLight" cx="0.4" cy="0.4" r="0.5">
<stop offset="30%" stop-color="#9bd8ff" />
<stop offset="100%" stop-color="#0c3e6a" />
</radialGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Stars scattered -->
<g fill="#fff" opacity="0.8">
<circle cx="20" cy="30" r="1.3"/>
<circle cx="45" cy="60" r="0.9"/>
<circle cx="100" cy="15" r="1.5"/>
<circle cx="150" cy="45" r="1.2"/>
<circle cx="210" cy="35" r="0.7"/>
<circle cx="230" cy="70" r="1.0"/>
<circle cx="270" cy="50" r="1.6"/>
<circle cx="280" cy="70" r="1.0"/>
<circle cx="55" cy="90" r="1.1"/>
</g>
<!-- Rocket-powered Banana group -->
<g transform="translate(120 210) rotate(-45)">
<!-- Banana body -->
<path d="M65 15c-15-10-35-10-50 0-7 5-6 15-3 25 5 15 35 15 45 0 3-8 8-22 8-25z"
fill="url(#bananaGradient)" stroke="#b08c12" stroke-width="1.7" />
<!-- Banana shadow -->
<ellipse cx="45" cy="40" rx="28" ry="15" fill="url(#bananaShadow)" opacity="0.35" />
<!-- Brown spots -->
<circle cx="40" cy="25" r="2.5" fill="#7a4e01" />
<circle cx="55" cy="20" r="1.8" fill="#7a4e01" />
<circle cx="48" cy="38" r="1.3" fill="#7a4e01" />
<circle cx="35" cy="35" r="1.7" fill="#7a4e01" />
<!-- Rocket nozzle under banana -->
<g transform="translate(20 55)">
<ellipse rx="8" ry="3" fill="#6b6b6b" />
<rect x="-8" y="-6" width="16" height="12" rx="3" ry="3" fill="#8a8a8a" stroke="#4a4a4a" stroke-width="0.8" />
<circle cx="0" cy="0" r="4" fill="#353535" />
<circle cx="0" cy="0" r="3" fill="#9da8bb" />
<circle cx="0" cy="0" r="1.5" fill="#3f5375" />
</g>
<!-- Cockpit/window on banana -->
<ellipse cx="35" cy="15" rx="6" ry="8" fill="url(#windowLight)" stroke="#3569a3" stroke-width="1" />
<circle cx="33" cy="12" r="2.2" fill="#cbedff" opacity="0.6" />
<path d="M29 11 Q34 14 31 17" stroke="#9ed1f9" stroke-width="1" fill="none" opacity="0.6" />
<path d="M37 11 Q41 14 38 17" stroke="#9ed1f9" stroke-width="1" fill="none" opacity="0.6" />
<!-- Rocket flames -->
<g transform="translate(22 66)">
<path d="M0 0 L5 20 L12 16 L7 34 L0 27 L-8 30 L-4 15 Z" fill="url(#flameGradient)" stroke="#9c1f00" stroke-width="0.6" />
<path d="M3 22 Q7 33 10 26 Q7 42 0 37 Q-7 41 -4 27 Z" fill="url(#flameGradient)" opacity="0.7"/>
</g>
</g>
<!-- Group of flying turtles -->
<g transform="translate(220 120)">
<!-- Turtle 1 -->
<g id="turtle1" transform="translate(0 0) scale(0.45)">
<!-- Shell -->
<ellipse cx="0" cy="0" rx="35" ry="25" fill="url(#shellPattern)" stroke="#2e4718" stroke-width="2" />
<!-- Body base -->
<ellipse cx="0" cy="10" rx="35" ry="12" fill="url(#turtleBody)" />
<!-- Head -->
<ellipse cx="45" cy="0" rx="10" ry="12" fill="url(#turtleBody)" />
<circle cx="51" cy="-4" r="3" fill="#fff" />
<circle cx="51" cy="-4" r="1.5" fill="#000" />
<circle cx="52" cy="-5" r="0.5" fill="#fff" opacity="0.7" />
<!-- Legs -->
<ellipse cx="-20" cy="20" rx="8" ry="5" fill="url(#turtleBody)" />
<ellipse cx="5" cy="20" rx="8" ry="5" fill="url(#turtleBody)" />
<ellipse cx="-25" cy="-15" rx="6" ry="10" fill="url(#turtleBody)" />
<ellipse cx="15" cy="-15" rx="6" ry="10" fill="url(#turtleBody)" />
<!-- Mouth surprised -->
<path d="M40 12 Q44 15 48 12" stroke="#265116" stroke-width="1.5" fill="none" />
</g>
<!-- Turtle 2 -->
<use href="#turtle1" transform="translate(-70 -20) scale(0.35) rotate(-20)"/>
<!-- Turtle 3 -->
<use href="#turtle1" transform="translate(-110 15) scale(0.4) rotate(15)"/>
<!-- Turtle 4 smaller and further -->
<use href="#turtle1" transform="translate(-160 -5) scale(0.3) rotate(5)" opacity="0.7"/>
</g>
<!-- Smoke from rocket exhaust trailing -->
<g>
<circle cx="136" cy="230" r="12" fill="url(#smokePuff)" />
<circle cx="155" cy="240" r="18" fill="url(#smokePuff)" />
<circle cx="190" cy="260" r="24" fill="url(#smokePuff)" />
<circle cx="230" cy="280" r="36" fill="url(#smokePuff)" />
<circle cx="260" cy="280" r="30" fill="url(#smokePuff)" />
</g>
<!-- Comet-like motion lines behind banana -->
<g stroke="#fff8b0" stroke-width="1.5" stroke-linecap="round" opacity="0.6">
<line x1="35" y1="185" x2="5" y2="215" />
<line x1="50" y1="175" x2="20" y2="205" />
<line x1="40" y1="200" x2="10" y2="230" />
</g>
</svg>
Judge's Analysis
Player 2's submission is more detailed and aligns better with the prompt.
The rocket-powered banana is clearly depicted with dynamic motion and a fiery exhaust, while the flock of flying turtles is represented with creativity and a sense of surprise.
In contrast, Player 1's submission is simpler and lacks the visual elements needed to fully convey the idea of 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.