Creative Challenge
"An apple wearing a crown, floating in a tiny boat on a lake under a starry sky."
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<!-- Sky -->
<radialGradient id="skyGrad" cx="150" cy="60" r="230" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#1a237e"/>
<stop offset="60%" stop-color="#0d1747"/>
<stop offset="100%" stop-color="#020518"/>
</radialGradient>
<!-- Water -->
<linearGradient id="waterGrad" x1="0" y1="180" x2="0" y2="300" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#033b66"/>
<stop offset="100%" stop-color="#001a2e"/>
</linearGradient>
<pattern id="wavePattern" width="40" height="20" patternUnits="userSpaceOnUse">
<path d="M0 10 Q10 0 20 10 T40 10 V20 H0 Z" fill="#fff" fill-opacity="0.05"/>
</pattern>
<!-- Stars -->
<radialGradient id="starGrad">
<stop offset="0%" stop-color="#ffffff"/>
<stop offset="100%" stop-color="#ffffff" stop-opacity="0"/>
</radialGradient>
<symbol id="star" viewBox="-1 -1 2 2">
<circle cx="0" cy="0" r="1" fill="url(#starGrad)"/>
</symbol>
<!-- Apple & Accessories -->
<radialGradient id="appleGrad" cx="0.4" cy="0.35" r="0.8">
<stop offset="0%" stop-color="#ff6b6b"/>
<stop offset="60%" stop-color="#c40000"/>
<stop offset="100%" stop-color="#4b0000"/>
</radialGradient>
<linearGradient id="leafGrad" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#66bb6a"/>
<stop offset="100%" stop-color="#2e7d32"/>
</linearGradient>
<linearGradient id="crownGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#ffec8b"/>
<stop offset="50%" stop-color="#ffb300"/>
<stop offset="100%" stop-color="#b8860b"/>
</linearGradient>
<linearGradient id="woodGrad" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#8d5a2b"/>
<stop offset="100%" stop-color="#5c3b21"/>
</linearGradient>
<!-- Boat assembly -->
<g id="boatGroup">
<!-- Hull -->
<path d="M-60 0 Q0 25 60 0 L50 15 Q0 35 -50 15 Z" fill="url(#woodGrad)"/>
<!-- Apple -->
<g transform="translate(0 -35)">
<circle r="25" fill="url(#appleGrad)"/>
<circle cx="-10" cy="-10" r="9" fill="#fff" fill-opacity="0.5"/>
<path d="M0 -25 L0 -40" stroke="#5c3b21" stroke-width="4" stroke-linecap="round"/>
<path d="M5 -25 C25 -45 38 -5 10 -10 Z" fill="url(#leafGrad)" transform="rotate(-20)"/>
<!-- Crown -->
<g transform="translate(0 -45)">
<path d="M-22 0 L-15 -18 L-8 0 L0 -18 L8 0 L15 -18 L22 0 L22 12 L-22 12 Z"
fill="url(#crownGrad)" stroke="#b8860b" stroke-width="1"/>
<circle cx="-15" cy="-8" r="3" fill="#00e5ff"/>
<circle cx="0" cy="-8" r="3" fill="#ff1744"/>
<circle cx="15" cy="-8" r="3" fill="#00e676"/>
</g>
</g>
</g>
</defs>
<!-- Night Sky -->
<rect width="300" height="300" fill="url(#skyGrad)"/>
<!-- Stars -->
<g>
<use href="#star" x="20" y="30" transform="scale(2)"/>
<use href="#star" x="70" y="55" transform="scale(1.4)"/>
<use href="#star" x="120" y="20" transform="scale(1.6)"/>
<use href="#star" x="170" y="60" transform="scale(1)"/>
<use href="#star" x="220" y="35" transform="scale(1.3)"/>
<use href="#star" x="260" y="80" transform="scale(0.9)"/>
<use href="#star" x="40" y="100" transform="scale(1)"/>
<use href="#star" x="90" y="90" transform="scale(1.8)"/>
<use href="#star" x="150" y="110" transform="scale(0.9)"/>
<use href="#star" x="200" y="100" transform="scale(1.4)"/>
<use href="#star" x="250" y="120" transform="scale(0.7)"/>
<use href="#star" x="15" y="140" transform="scale(1.1)"/>
<use href="#star" x="60" y="150" transform="scale(0.6)"/>
<use href="#star" x="110" y="140" transform="scale(1)"/>
<use href="#star" x="160" y="150" transform="scale(0.8)"/>
<use href="#star" x="210" y="140" transform="scale(1.2)"/>
<use href="#star" x="270" y="160" transform="scale(1)"/>
</g>
<!-- Lake -->
<rect x="0" y="180" width="300" height="120" fill="url(#waterGrad)"/>
<rect x="0" y="180" width="300" height="120" fill="url(#wavePattern)"/>
<!-- Boat with Apple -->
<g transform="translate(150 170)">
<use href="#boatGroup"/>
</g>
<!-- Reflection -->
<g opacity="0.25">
<use href="#boatGroup" transform="translate(150 190) scale(1 -1)"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Starry sky background -->
<rect x="0" y="0" width="300" height="300" fill="navy" />
<circle cx="150" cy="150" r="120" fill="url(#starGradient)" />
<defs>
<radialGradient id="starGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color: #002147; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #0A849A; stop-opacity: 1" />
</radialGradient>
</defs>
<!-- Lake -->
<rect x="0" y="150" width="300" height="150" fill="cadetblue" />
<!-- Tiny boat -->
<polygon points="100,200 150,200 170,230 80,230" fill="saddlebrown" />
<!-- Apple -->
<circle cx="135" cy="185" r="20" fill="red" />
<!-- Crown -->
<polygon points="130,165 140,150 150,165" fill="gold" />
</svg>
Judge's Analysis
Player 1's submission adheres more closely to the prompt, with a clear depiction of an apple wearing a detailed crown, floating in a boat on a lake under a starry sky.
The composition includes visual elements such as reflections on the water and a gradient sky, enhancing the visual appeal and technical quality.
Player 2's submission is simpler and lacks detail, making it less engaging and less aligned with the prompt's creative expectations.
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.