Creative Challenge
"Turtle with rockets launching to space from a beach"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Background gradients -->
<linearGradient id="spaceGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#000428"/>
<stop offset="100%" stop-color="#004e92"/>
</linearGradient>
<linearGradient id="beachGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#fddc97"/>
<stop offset="100%" stop-color="#f6b352"/>
</linearGradient>
<!-- Turtle shell gradient -->
<linearGradient id="turtleShellGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#81c784"/>
<stop offset="100%" stop-color="#388e3c"/>
</linearGradient>
<!-- Rocket body gradient -->
<linearGradient id="rocketGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#ff5252"/>
<stop offset="100%" stop-color="#d32f2f"/>
</linearGradient>
<!-- Rocket flame gradient -->
<radialGradient id="flameGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="yellow"/>
<stop offset="100%" stop-color="orange"/>
</radialGradient>
<!-- Define a rocket symbol -->
<symbol id="rocket" viewBox="0 0 20 42">
<!-- Rocket tip -->
<polygon points="10,0 18,12 2,12" fill="url(#rocketGradient)"/>
<!-- Rocket body -->
<rect x="4" y="12" width="12" height="18" fill="url(#rocketGradient)"/>
<!-- Rocket fins -->
<polygon points="4,30 16,30 10,36" fill="url(#rocketGradient)"/>
<!-- Rocket flame -->
<path d="M10,36 C7,42 13,42 10,36" fill="url(#flameGradient)"/>
</symbol>
</defs>
<!-- Space background -->
<rect x="0" y="0" width="300" height="300" fill="url(#spaceGradient)"/>
<!-- Stars sprinkled in space -->
<circle cx="30" cy="40" r="1.2" fill="white"/>
<circle cx="80" cy="70" r="1" fill="white"/>
<circle cx="120" cy="30" r="1.5" fill="white"/>
<circle cx="200" cy="50" r="1" fill="white"/>
<circle cx="250" cy="80" r="1.2" fill="white"/>
<circle cx="50" cy="90" r="1" fill="white"/>
<circle cx="90" cy="10" r="1" fill="white"/>
<circle cx="180" cy="20" r="1" fill="white"/>
<circle cx="270" cy="30" r="1" fill="white"/>
<!-- Beach at the bottom -->
<path d="M0,270 Q150,260 300,270 L300,300 L0,300 Z" fill="url(#beachGradient)"/>
<!-- Turtle on the beach -->
<g id="turtle">
<!-- Shell -->
<ellipse cx="150" cy="250" rx="50" ry="35" fill="url(#turtleShellGradient)" stroke="#2e7d32" stroke-width="2"/>
<!-- Head (facing right) -->
<circle cx="205" cy="250" r="8" fill="#81c784" stroke="#2e7d32" stroke-width="1"/>
<!-- Limbs -->
<circle cx="130" cy="240" r="5" fill="#81c784" stroke="#2e7d32" stroke-width="1"/>
<circle cx="130" cy="260" r="5" fill="#81c784" stroke="#2e7d32" stroke-width="1"/>
<circle cx="170" cy="240" r="5" fill="#81c784" stroke="#2e7d32" stroke-width="1"/>
<circle cx="170" cy="260" r="5" fill="#81c784" stroke="#2e7d32" stroke-width="1"/>
<!-- Tail -->
<polygon points="100,250 90,245 90,255" fill="#81c784" stroke="#2e7d32" stroke-width="1"/>
</g>
<!-- Rockets launching from the turtle's shell.
The turtle shell's top is at y = 250 - 35 = 215.
Each rocket symbol is 42 units tall; positioning them so their base (y=42) aligns with 215 gives a translate Y of 215-42 = 173.
Adjust X so that the rocket (20 units wide, centered at 10) is positioned appropriately. -->
<use href="#rocket" transform="translate(115,173)"/>
<use href="#rocket" transform="translate(140,173)"/>
<use href="#rocket" transform="translate(165,173)"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Sky Gradient -->
<defs>
<linearGradient id="skyGradient" x1="0" x2="0" y1="0" y2="1">
<stop offset="0%" style="stop-color:rgb(0, 102, 204);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255, 153, 51);stop-opacity:1" />
</linearGradient>
<radialGradient id="rocketFireGradient" cx="0.5" cy="0.5" r="0.5" fx="0.5" fy="0.5">
<stop offset="0%" style="stop-color:rgb(255, 102, 0);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgba(255, 255, 255, 0);stop-opacity:0" />
</radialGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Beach -->
<path d="M0,230 C75,220 225,220 300,230 L300,300 L0,300 Z" fill="gold" />
<!-- Turtle -->
<ellipse cx="150" cy="230" rx="40" ry="30" fill="green" />
<ellipse cx="130" cy="230" rx="10" ry="15" fill="green" />
<ellipse cx="170" cy="230" rx="10" ry="15" fill="green" />
<ellipse cx="150" cy="210" rx="20" ry="10" fill="green" />
<circle cx="150" cy="240" r="3" fill="black" />
<!-- Rockets -->
<g transform="rotate(-10, 150, 200)">
<rect x="145" y="185" width="10" height="30" fill="grey" />
<polygon points="145,215 155,215 150,225" fill="red" />
<circle cx="150" cy="230" r="8" fill="url(#rocketFireGradient)" />
</g>
<g transform="rotate(10, 155, 190)">
<rect x="151" y="170" width="10" height="30" fill="grey" />
<polygon points="151,200 161,200 156,210" fill="red" />
<circle cx="156" cy="215" r="8" fill="url(#rocketFireGradient)" />
</g>
<!-- Stars -->
<circle cx="50" cy="50" r="2" fill="white" />
<circle cx="120" cy="30" r="1.5" fill="white" />
<circle cx="260" cy="60" r="2.5" fill="white" />
<circle cx="200" cy="90" r="1" fill="white" />
<circle cx="245" cy="130" r="2" fill="white" />
</svg>
Judge's Analysis
Player 1's image clearly depicts a turtle with rockets on a beach setting, capturing the prompt well with a whimsical style.
The technical quality is strong with clean lines and a clear visual narrative.
In contrast, Player 2's image is less clear in depicting the prompt, as the elements are more abstract and less immediately recognizable.
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
"Alien tea party in zero gravity"
"Floating city above a lava flow under a dark starry sky"
"A dragon sipping tea at a tiny table with a hummingbird offering a sugar cube"
"Two flamingos standing on one leg in a surreal ocean of stars"
"Floating lemons in space with surprised astronaut faces"
"A cat playing the cello on a moonlit rooftop"