Creative Challenge
"A giant apple tree growing on the back of a turtle island"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with gradient sky and water -->
<defs>
<linearGradient id="sky" x1="0" y1="0" x2="0" y2="300">
<stop offset="0" stop-color="#87CEEB" />
<stop offset="1" stop-color="#4682B4" />
</linearGradient>
<linearGradient id="water" x1="0" y1="0" x2="0" y2="300">
<stop offset="0" stop-color="#6495ED" />
<stop offset="1" stop-color="#1E90FF" />
</linearGradient>
<radialGradient id="sun" cx="150" cy="100" r="50" fx="150" fy="100">
<stop offset="0" stop-color="#FDB813" />
<stop offset="1" stop-color="#FFD700" />
</radialGradient>
<linearGradient id="turtleShell" x1="0" y1="0" x2="0" y2="100">
<stop offset="0" stop-color="#8B4513" />
<stop offset="1" stop-color="#4A2B0F" />
</linearGradient>
<linearGradient id="leaf" x1="0" y1="0" x2="0" y2="100">
<stop offset="0" stop-color="#32CD32" />
<stop offset="1" stop-color="#228B22" />
</linearGradient>
</defs>
<!-- Sky and water background -->
<rect width="300" height="300" fill="url(#sky)" />
<rect x="0" y="200" width="300" height="100" fill="url(#water)" />
<!-- Turtle -->
<g transform="translate(150,200)">
<!-- Turtle shell -->
<path d="M0 0 Q150 80 300 0 Q260 -40 185 -40 Q150 -80 80 -40 Q40 -40 0 0" fill="url(#turtleShell)" />
<!-- Turtle head and legs -->
<circle cx="150" cy="-50" r="20" fill="#8B4513" />
<circle cx="70" cy="10" r="15" fill="#8B4513" />
<circle cx="230" cy="10" r="15" fill="#8B4513" />
<circle cx="40" cy="160" r="15" fill="#8B4513" />
<circle cx="260" cy="160" r="15" fill="#8B4513" />
</g>
<!-- Island on turtle's back -->
<g transform="translate(150,150)">
<!-- Land mass -->
<path d="M0 0 Q50 -20 100 0 Q150 20 200 0 Q250 -20 300 0" fill="url(#leaf)" />
<!-- Tree trunk -->
<path d="M150 0 L150 100" stroke="#8B4513" stroke-width="20" fill="none" />
<!-- Tree branches -->
<path d="M150 100 Q120 150 90 160" stroke="#8B4513" stroke-width="15" fill="none" />
<path d="M150 100 Q180 150 210 160" stroke="#8B4513" stroke-width="15" fill="none" />
<!-- Apples -->
<circle cx="100" cy="120" r="15" fill="red" />
<circle cx="200" cy="120" r="15" fill="red" />
<circle cx="150" cy="140" r="15" fill="red" />
<!-- Leaves -->
<path d="M100 100 Q120 80 140 100" fill="url(#leaf)" />
<path d="M200 100 Q220 80 240 100" fill="url(#leaf)" />
<path d="M150 160 Q170 180 150 200" fill="url(#leaf)" />
</g>
<!-- Sun -->
<circle cx="250" cy="70" r="50" fill="url(#sun)" />
<!-- Clouds -->
<circle cx="50" cy="50" r="20" fill="white" opacity="0.6" />
<circle cx="80" cy="60" r="30" fill="white" opacity="0.6" />
<circle cx="110" cy="50" r="25" fill="white" opacity="0.6" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Turtle island body -->
<circle cx="150" cy="200" r="100" fill="#a98f71" />
<!-- Turtle shell -->
<path d="M50 200 Q150 100 250 200 Q150 140 50 200" fill="#6f4e23" />
<!-- Apple tree trunk -->
<rect x="145" y="120" width="10" height="80" fill="#8b5a2b" />
<!-- Apple tree canopy -->
<circle cx="150" cy="120" r="50" fill="#1a832b" />
<circle cx="130" cy="100" r="40" fill="#1a832b" />
<circle cx="170" cy="100" r="40" fill="#1a832b" />
<circle cx="110" cy="140" r="30" fill="#1a832b" />
<circle cx="190" cy="140" r="30" fill="#1a832b" />
<!-- Apple fruits -->
<circle cx="130" cy="100" r="10" fill="#ee4540" />
<circle cx="170" cy="100" r="10" fill="#ee4540" />
<circle cx="110" cy="140" r="10" fill="#ee4540" />
<circle cx="190" cy="140" r="10" fill="#ee4540" />
<!-- Sun -->
<circle cx="280" cy="20" r="30" fill="#ffcd00" />
</svg>
Judge's Analysis
Player 2's submission clearly represents the concept of a giant apple tree growing on the back of a turtle island, with a distinct turtle shape and a tree on top.
The composition is simple yet effective, and the visual elements are cohesive.
In contrast, Player 1's image lacks clarity and the turtle island concept is not as easily discernible.
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
"Surrealist flying fish with mechanical wings over a neon cityscape"
"Flying fish playing chess on floating lily pads"
"Clock tower made of melting candles"
"Agrarian moon, cows grazing in zero gravity fields"
"Melting clock dripping over a crescent moon"
"Octopus reading a newspaper at sunrise"