Creative Challenge
"Flying turtle with a lighthouse on its shell during a sunset"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="sunsetGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FF6F61;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FFC107;stop-opacity:1" />
</linearGradient>
<radialGradient id="turtleShellGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#4CAF50;stop-opacity:1" />
<stop offset="100%" style="stop-color:#388E3C;stop-opacity:1" />
</radialGradient>
<pattern id="shellPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="2" fill="#8BC34A"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#sunsetGradient)" />
<g transform="translate(150, 150)">
<path d="M-50 40 C-70 20 -70 -30 -50 -50 C-30 -70 30 -70 50 -50 C70 -30 70 20 50 40 C30 60 -30 60 -50 40"
fill="url(#turtleShellGradient)" stroke="#1B5E20" stroke-width="2" />
<ellipse cx="0" cy="40" rx="60" ry="20" fill="url(#shellPattern)" />
<g transform="translate(0, -60)">
<polygon points="-8,-10 8,-10 10,10 -10,10" fill="#FF5722" />
<rect x="-3" y="-10" width="6" height="10" fill="#FFB300" />
<path d="M3,-10 L3,-15 L5,-15 L5,-10 Z" fill="#FFC107" />
<path d="M-3,-10 L-3,-15 L-5,-15 L-5,-10 Z" fill="#FFC107" />
<path d="M3,-15 Q4,-17 5,-15 Z" fill="#FFEB3B" />
<path d="M-3,-15 Q-4,-17 -5,-15 Z" fill="#FFEB3B" />
</g>
</g>
<g transform="translate(50, 250)">
<circle cx="0" cy="0" r="8" fill="yellow" />
<rect x="-1" y="-15" width="2" height="15" fill="#BDBDBD" />
<polygon points="-5,-15 5,-15 3,-25 -3,-25" fill="#FF5722" />
<rect x="-1.5" y="-25" width="3" height="10" fill="#FFC107" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="sun" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#FFD700"/>
<stop offset="50%" stop-color="#FF8C00"/>
<stop offset="100%" stop-color="#8B0000"/>
</radialGradient>
<linearGradient id="sky" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#191970"/>
<stop offset="40%" stop-color="#FF4500"/>
<stop offset="100%" stop-color="#FFDAB9"/>
</linearGradient>
<pattern id="shellPattern" patternUnits="userSpaceOnUse" width="20" height="20">
<path d="M0 10 Q5 5 10 10 T20 10" stroke="#8B4513" fill="none"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#sky)"/>
<circle cx="250" cy="70" r="40" fill="url(#sun)"/>
<g transform="translate(80 120)">
<!-- Turtle body -->
<path d="M60 80 Q40 120 20 140 Q60 160 100 140 Q140 160 180 140 Q160 120 140 80Z" fill="#228B22"/>
<!-- Shell -->
<g transform="translate(60 60)" fill="url(#shellPattern)">
<ellipse rx="80" ry="50" transform="rotate(-30)"/>
<circle cx="0" cy="-10" r="15" fill="#CD853F"/>
<!-- Lighthouse -->
<rect x="-8" y="-50" width="16" height="60" fill="#B22222"/>
<path d="M-8 -50 L0 -60 8 -50" fill="#FFD700"/>
<circle cx="0" cy="-35" r="5" fill="#FFF"/>
<g stroke="#FFD700" stroke-width="2" opacity="0.7">
<line x1="0" y1="-60" x2="-30" y2="-90"/>
<line x1="0" y1="-60" x2="30" y2="-90"/>
</g>
</g>
<!-- Flippers -->
<path d="M-40 140 Q-20 160 0 140 Q20 160 40 140" fill="#006400"/>
<path d="M140 140 Q160 160 180 140 Q200 160 220 140" fill="#006400"/>
</g>
<!-- Wave effects -->
<g fill="none" stroke="#FFF" opacity="0.3">
<path d="M0 250 Q50 230 100 250 T200 250" stroke-width="3"/>
<path d="M50 270 Q100 260 150 270 T250 270" stroke-width="2"/>
</g>
<!-- Glowing sun rays -->
<g stroke="#FFD700" opacity="0.4" transform="rotate(-30 250 70)">
<line x1="250" y1="70" x2="230" y2="150" stroke-width="2"/>
<line x1="250" y1="70" x2="170" y2="90" stroke-width="2"/>
<animate attributeName="opacity" values="0.4;0.2;0.4" dur="3s" repeatCount="indefinite"/>
</g>
</svg>
Judge's Analysis
Player 2's image captures the prompt more effectively with a clear depiction of a lighthouse on a turtle shell, set against a vibrant sunset.
The composition is dynamic, and the use of colors creates a visually appealing scene.
Player 1's submission is more abstract and lacks clarity in representing the flying turtle 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
"Umbrella tree with raining keys"
"Flamingo ice skating on a lily pad"
"Treehouse in a shoe-shaped tree"
"Octopus juggling cupcakes on a unicycle over a rainbow"
"Golden octopus wearing a top hat in a vintage-style coffee cup"
"A dancing cactus in a tutu balancing on a floating, striped beach ball"