Creative Challenge
"Robot watering a metallic flower in a desert."
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Desert Background with Gradient -->
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#ff7e00" />
<stop offset="100%" stop-color="#ffcc66" />
</linearGradient>
<linearGradient id="sandGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#e6b87d" />
<stop offset="50%" stop-color="#d4a76a" />
<stop offset="100%" stop-color="#c4976b" />
</linearGradient>
<radialGradient id="sunGlow" cx="85%" cy="15%" r="20%" fx="85%" fy="15%">
<stop offset="0%" stop-color="#ffffff" />
<stop offset="20%" stop-color="#ffff00" />
<stop offset="100%" stop-color="#ff7e00" stop-opacity="0" />
</radialGradient>
<linearGradient id="metalGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#d1d1d1" />
<stop offset="50%" stop-color="#a8a8a8" />
<stop offset="100%" stop-color="#787878" />
</linearGradient>
<linearGradient id="robotGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#4a90e2" />
<stop offset="100%" stop-color="#2c5999" />
</linearGradient>
<filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
<feGaussianBlur in="SourceAlpha" stdDeviation="3" />
<feOffset dx="2" dy="4" result="offsetblur" />
<feComponentTransfer>
<feFuncA type="linear" slope="0.5" />
</feComponentTransfer>
<feMerge>
<feMergeNode />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
<pattern id="sandPattern" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="1" fill="#c4976b" />
<circle cx="15" cy="15" r="1" fill="#b58a62" />
<circle cx="10" cy="10" r="0.5" fill="#a87c58" />
</pattern>
</defs>
<!-- Sky and Sun -->
<rect x="0" y="0" width="300" height="200" fill="url(#skyGradient)" />
<circle cx="255" cy="45" r="30" fill="#ffdd00" />
<circle cx="255" cy="45" r="60" fill="url(#sunGlow)" />
<!-- Desert Ground -->
<rect x="0" y="180" width="300" height="120" fill="url(#sandGradient)" />
<rect x="0" y="180" width="300" height="120" fill="url(#sandPattern)" fill-opacity="0.3" />
<!-- Distant Mountains -->
<polygon points="0,180 40,140 70,160 100,130 150,170 200,135 250,155 300,140 300,180" fill="#c4976b" />
<polygon points="0,180 40,140 70,160 100,130 150,170 200,135 250,155 300,140 300,180" fill="#b58a62" fill-opacity="0.5" />
<!-- Robot -->
<g filter="url(#shadow)">
<!-- Robot Body -->
<rect x="70" y="130" width="50" height="70" rx="5" ry="5" fill="url(#robotGradient)" stroke="#1a1a1a" stroke-width="2" />
<!-- Robot Head -->
<rect x="75" y="100" width="40" height="35" rx="5" ry="5" fill="url(#robotGradient)" stroke="#1a1a1a" stroke-width="2" />
<!-- Robot Eyes -->
<circle cx="87" cy="115" r="5" fill="#ffffff" />
<circle cx="87" cy="115" r="2" fill="#ff3300" />
<circle cx="103" cy="115" r="5" fill="#ffffff" />
<circle cx="103" cy="115" r="2" fill="#ff3300" />
<!-- Robot Mouth -->
<rect x="85" y="125" width="20" height="3" fill="#1a1a1a" />
<!-- Robot Arms -->
<rect x="120" y="140" width="40" height="10" rx="5" ry="5" fill="url(#metalGradient)" stroke="#1a1a1a" stroke-width="1" />
<rect x="30" y="140" width="40" height="10" rx="5" ry="5" fill="url(#metalGradient)" stroke="#1a1a1a" stroke-width="1" />
<!-- Robot Legs -->
<rect x="80" y="200" width="10" height="30" rx="3" ry="3" fill="url(#metalGradient)" stroke="#1a1a1a" stroke-width="1" />
<rect x="100" y="200" width="10" height="30" rx="3" ry="3" fill="url(#metalGradient)" stroke="#1a1a1a" stroke-width="1" />
<!-- Robot Feet -->
<ellipse cx="85" cy="230" rx="10" ry="5" fill="#1a1a1a" />
<ellipse cx="105" cy="230" rx="10" ry="5" fill="#1a1a1a" />
<!-- Robot Antenna -->
<line x1="95" y1="100" x2="95" y2="90" stroke="#1a1a1a" stroke-width="2" />
<circle cx="95" cy="87" r="3" fill="#ff3300" />
<!-- Robot Panel -->
<rect x="80" y="150" width="30" height="20" rx="2" ry="2" fill="#1a1a1a" />
<circle cx="87" cy="155" r="2" fill="#ff3300" />
<circle cx="95" cy="155" r="2" fill="#00ff00" />
<circle cx="103" cy="155" r="2" fill="#ffff00" />
<rect x="85" y="160" width="20" height="5" fill="#333333" />
</g>
<!-- Watering Can -->
<g transform="rotate(-20, 160, 140)">
<path d="M160,140 L190,130 Q195,129 195,134 L195,150 Q195,155 190,154 L160,145 Z" fill="url(#metalGradient)" stroke="#1a1a1a" stroke-width="1" />
<rect x="150" y="138" width="10" height="7" fill="url(#metalGradient)" stroke="#1a1a1a" stroke-width="1" />
<path d="M150,142 Q140,120 130,142" fill="none" stroke="url(#metalGradient)" stroke-width="4" stroke-linecap="round" />
</g>
<!-- Water Drops -->
<g fill="#66ccff" fill-opacity="0.8">
<path d="M130,142 Q130,144 132,146 L134,149 Q136,151 138,149 L140,146 Q142,144 140,142 Z" />
<circle cx="135" cy="155" r="2" />
<circle cx="138" cy="160" r="1.5" />
<circle cx="132" cy="162" r="1" />
<circle cx="136" cy="165" r="1.5" />
</g>
<!-- Metallic Flower -->
<g filter="url(#shadow)">
<!-- Flower Stem -->
<rect x="135" y="170" width="4" height="40" rx="2" ry="2" fill="#3a7d44" />
<!-- Flower Pot -->
<path d="M125,210 L150,210 L145,230 L130,230 Z" fill="#993300" />
<ellipse cx="137.5" cy="210" rx="12.5" ry="3" fill="#7a2900" />
<!-- Flower Petals -->
<g transform="translate(137, 170)">
<!-- Base -->
<circle cx="0" cy="0" r="10" fill="url(#metalGradient)" stroke="#1a1a1a" stroke-width="0.5" />
<!-- Petals -->
<g fill="url(#metalGradient)" stroke="#1a1a1a" stroke-width="0.5">
<path d="M0,-10 Q-10,-20 0,-25 Q10,-20 0,-10 Z" />
<path d="M8.7,-5 Q8.7,-20 20,-15 Q15,-5 8.7,-5 Z" transform="rotate(40)" />
<path d="M8.7,-5 Q8.7,-20 20,-15 Q15,-5 8.7,-5 Z" transform="rotate(80)" />
<path d="M8.7,-5 Q8.7,-20 20,-15 Q15,-5 8.7,-5 Z" transform="rotate(120)" />
<path d="M8.7,-5 Q8.7,-20 20,-15 Q15,-5 8.7,-5 Z" transform="rotate(160)" />
<path d="M8.7,-5 Q8.7,-20 20,-15 Q15,-5 8.7,-5 Z" transform="rotate(200)" />
<path d="M8.7,-5 Q8.7,-20 20,-15 Q15,-5 8.7,-5 Z" transform="rotate(240)" />
<path d="M8.7,-5 Q8.7,-20 20,-15 Q15,-5 8.7,-5 Z" transform="rotate(280)" />
<path d="M8.7,-5 Q8.7,-20 20,-15 Q15,-5 8.7,-5 Z" transform="rotate(320)" />
</g>
<!-- Center -->
<circle cx="0" cy="0" r="5" fill="#ffcc00" />
<circle cx="0" cy="0" r="3" fill="#ff6600" />
</g>
<!-- Leaves -->
<path d="M139,190 Q150,185 155,195 Q145,200 139,190 Z" fill="#3a7d44" />
<path d="M135,185 Q125,180 120,190 Q130,195 135,185 Z" fill="#3a7d44" />
</g>
<!-- Cactus -->
<g transform="translate(220, 200)">
<path d="M0,0 Q-5,-20 -10,-30 Q-15,-40 -10,-50 Q-5,-55 0,-50 Q5,-45 0,-30 Z" fill="#3a7d44" />
<path d="M0,0 Q5,-15 15,-20 Q20,-25 20,-35 Q15,-40 10,-35 Q5,-30 0,-20 Z" fill="#3a7d44" />
<path d="M0,0 L0,-30" fill="none" stroke="#2a5d34" stroke-width="1" />
<path d="M0,-20 L15,-25" fill="none" stroke="#2a5d34" stroke-width="1" />
<circle cx="-5" cy="-40" r="1" fill="#993300" />
<circle cx="15" cy="-30" r="1" fill="#993300" />
</g>
<!-- Small Stones -->
<ellipse cx="180" cy="225" rx="10" ry="5" fill="#999999" />
<ellipse cx="200" cy="220" rx="7" ry="3" fill="#777777" />
<ellipse cx="90" cy="220" rx="8" ry="4" fill="#888888" />
<ellipse cx="70" cy="225" rx="5" ry="2" fill="#aaaaaa" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Gradients -->
<linearGradient id="desertGrad" x1="0" y1="200" x2="0" y2="300" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#FFD77C"/>
<stop offset="50%" stop-color="#FFB347"/>
<stop offset="100%" stop-color="#E29A27"/>
</linearGradient>
<radialGradient id="sunGrad" cx="0.5" cy="0.5" r="0.8">
<stop offset="0%" stop-color="#FFFBBC" />
<stop offset="70%" stop-color="#FFE187" />
<stop offset="100%" stop-color="#FFD253" />
</radialGradient>
<linearGradient id="robotBodyGrad" x1="0" y1="0" x2="0" y2="100" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#8DE1FC"/>
<stop offset="100%" stop-color="#2688A4"/>
</linearGradient>
<linearGradient id="metalPetals" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#F8F8FF"/>
<stop offset="60%" stop-color="#A8B6C8"/>
<stop offset="100%" stop-color="#606B75"/>
</linearGradient>
<radialGradient id="wateringCan" cx="0.5" cy="0.4" r="1">
<stop offset="0%" stop-color="#B8E0F3"/>
<stop offset="100%" stop-color="#5E8FA4"/>
</radialGradient>
<radialGradient id="dropletGrad" cx="0.5" cy="0.5" r="0.7">
<stop offset="0%" stop-color="#B9F2FF"/>
<stop offset="100%" stop-color="#469EDB"/>
</radialGradient>
<linearGradient id="stemGrad" x1="0" y1="0" x2="0.2" y2="1">
<stop offset="0%" stop-color="#A7FFCE"/>
<stop offset="100%" stop-color="#358F63"/>
</linearGradient>
<radialGradient id="shadowGrad" cx="0.5" cy="0.5" r="0.8">
<stop offset="0%" stop-color="#A97C3B" stop-opacity="0.2"/>
<stop offset="100%" stop-color="#7A5C36" stop-opacity="0.05"/>
</radialGradient>
<linearGradient id="desertMountains" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" stop-color="#D7A37B" />
<stop offset="25%" stop-color="#B6773B" />
<stop offset="70%" stop-color="#FFC583"/>
</linearGradient>
<radialGradient id="flowerCenter" cx="0.5" cy="0.5" r="1">
<stop offset="0%" stop-color="#E6E4DB"/>
<stop offset="100%" stop-color="#C2B280"/>
</radialGradient>
<radialGradient id="eyeLens" cx="0.5" cy="0.5" r="0.8">
<stop offset="0%" stop-color="#A7EAFE"/>
<stop offset="100%" stop-color="#25536B"/>
</radialGradient>
</defs>
<!-- Background sky -->
<rect x="0" y="0" width="300" height="200" fill="#8ccdff"/>
<ellipse cx="240" cy="60" rx="44" ry="36" fill="url(#sunGrad)" opacity="0.95"/>
<!-- Distant desert mountains -->
<path d="M0 180 Q30 130 80 150 Q110 160 140 120 Q160 110 180 140 Q215 110 300 150 L300 200 Q200 170 0 200Z"
fill="url(#desertMountains)" opacity="0.65"/>
<!-- Distant dunes -->
<path d="M0 210 Q40 195 75 208 Q110 220 140 200 Q160 180 180 220 Q220 230 300 210 L300 300 L0 300Z"
fill="#FFE7A3" opacity="0.7"/>
<!-- Foreground sand -->
<rect x="0" y="200" width="300" height="100" fill="url(#desertGrad)"/>
<!-- Shadows under robot and flower -->
<ellipse cx="85" cy="245" rx="32" ry="10" fill="url(#shadowGrad)"/>
<ellipse cx="210" cy="252" rx="15" ry="7" fill="url(#shadowGrad)" />
<!-- Metallic flower -->
<g id="metalFlower">
<!-- Stem -->
<path d="M210 260 Q215 230 208 210"
stroke="url(#stemGrad)" stroke-width="6" fill="none"/>
<!-- Leaves -->
<ellipse cx="212" cy="240" rx="9" ry="4" fill="url(#metalPetals)" transform="rotate(-20 212 240)" opacity="0.7"/>
<ellipse cx="206" cy="227" rx="6" ry="3" fill="url(#metalPetals)" transform="rotate(30 206 227)" opacity="0.7"/>
<!-- Flower petals -->
<g>
<g>
<ellipse cx="208" cy="205" rx="16" ry="6"
fill="url(#metalPetals)" stroke="#567" stroke-width="1.5" transform="rotate(10 208 205)"/>
<ellipse cx="208" cy="205" rx="6" ry="17"
fill="url(#metalPetals)" stroke="#567" stroke-width="1.2" transform="rotate(-5 208 205)"/>
<ellipse cx="208" cy="205" rx="11" ry="4.3"
fill="url(#metalPetals)" stroke="#a5bfd9" stroke-width="0.8" transform="rotate(48 208 205)"/>
<ellipse cx="208" cy="205" rx="4.3" ry="13"
fill="url(#metalPetals)" stroke="#a5bfd9" stroke-width="0.8" transform="rotate(110 208 205)"/>
</g>
<!-- Little bolts on petals -->
<circle cx="220" cy="203" r="1.3" fill="#c0d0e0" stroke="#768385" stroke-width="0.4"/>
<circle cx="210.5" cy="220" r="1" fill="#ddf3ff" stroke="#90a0b0" stroke-width="0.2"/>
<circle cx="197" cy="208" r="1" fill="#adc9e0" stroke="#6e7983" stroke-width="0.3"/>
</g>
<!-- Center (metallic) -->
<circle cx="208" cy="205" r="6.3" fill="url(#flowerCenter)" stroke="#E4E4E4" stroke-width="1.2"/>
<!-- Gears in the flower center as visual metaphor-->
<g>
<circle cx="208" cy="205" r="2.5" fill="#9bc2d8"/>
<path d="M208 202.8 L208 207.2" stroke="#929f9f" stroke-width="0.7"/>
<path d="M205.8 205 L210.2 205" stroke="#929f9f" stroke-width="0.7"/>
<path d="M209.2 206.2 L206.8 203.8" stroke="#929f9f" stroke-width="0.5"/>
<path d="M206.8 206.2 L209.2 203.8" stroke="#929f9f" stroke-width="0.5"/>
</g>
</g>
<!-- Robot (left side) -->
<g id="robot" filter="url(#f2)">
<!-- Legs -->
<g>
<rect x="80" y="220" width="8" height="32" rx="4" fill="#b8e0f3" stroke="#5e8fa4" stroke-width="1.2"/>
<ellipse cx="84" cy="255" rx="7" ry="3" fill="#56737C"/>
<rect x="97" y="222" width="8" height="28" rx="4" fill="#b8e0f3" stroke="#5e8fa4" stroke-width="1.2"/>
<ellipse cx="101" cy="248" rx="6.8" ry="2.8" fill="#56737C"/>
</g>
<!-- Body -->
<rect x="77" y="168" width="33" height="43" rx="11" fill="url(#robotBodyGrad)" stroke="#447185" stroke-width="2.2"/>
<!-- Belly window -->
<ellipse cx="93" cy="188" rx="11" ry="7.5" fill="#d4f4fe" stroke="#48a2db" stroke-width="1"/>
<rect x="86" y="182" width="14" height="6" rx="2" fill="#95d1e6" opacity="0.5"/>
<rect x="90" y="190" width="7" height="2.5" rx="1" fill="#f5faff" opacity="0.4"/>
<!-- Left arm (supports watering can) -->
<g>
<rect x="65" y="176" width="12" height="9" rx="4" fill="#b8e6ff" stroke="#518aac" stroke-width="1"/>
<rect x="59" y="180" width="19" height="8" rx="4" fill="#b8e6ff" stroke="#518aac" stroke-width="1"/>
<ellipse cx="61" cy="184" rx="5" ry="3" fill="#bdeaf7" />
<!-- Hand (clamp) -->
<ellipse cx="58" cy="188" rx="2" ry="4.5" fill="#dddfea" stroke="#666d6f" stroke-width="0.7"/>
<circle cx="57" cy="185" r="1.0" fill="#dae4f9"/>
</g>
<!-- Right arm (extended upright, pointer finger out for expression) -->
<g>
<rect x="112" y="180" width="14" height="8.2" rx="4.8" fill="#b3cfe3" stroke="#2b5a69" stroke-width="0.7"
transform="rotate(25 119 184)"/>
<rect x="122" y="187" width="8" height="17" rx="3.8" fill="#b3cfe3" stroke="#2b5a69" stroke-width="0.7"
transform="rotate(15 126 195)"/>
<!-- Fingers -->
<ellipse cx="127" cy="203" rx="3" ry="1.2" fill="#e8f0fd" />
<ellipse cx="125" cy="200.5" rx="1.4" ry="3.3" fill="#e8f0fd" />
</g>
<!-- Head -->
<g>
<rect x="82" y="145" width="23" height="26" rx="8.2" fill="#d8f4ff" stroke="#59a4c7" stroke-width="2.2"/>
<rect x="86" y="150" width="15" height="10" rx="5" fill="#95d8ec" stroke="#b0d3e6" stroke-width="1"/>
<!-- Eyes -->
<ellipse cx="89.5" cy="158" rx="2.1" ry="2.6" fill="url(#eyeLens)" stroke="#2b5260" stroke-width="0.5"/>
<ellipse cx="98.5" cy="158" rx="2.1" ry="2.6" fill="url(#eyeLens)" stroke="#2b5260" stroke-width="0.5"/>
<ellipse cx="98.5" cy="157.7" rx="0.7" ry="1" fill="#fff" opacity="0.39"/>
<ellipse cx="89.5" cy="157.7" rx="0.7" ry="1" fill="#fff" opacity="0.39"/>
<!-- Antenna -->
<rect x="93.8" y="139" width="2.5" height="12" rx="1.1" fill="#7ad1e6"/>
<circle cx="95" cy="138.2" r="2.2" fill="#cffcff" stroke="#9eedea" stroke-width="1"/>
</g>
<!-- Chest panel lines -->
<rect x="90" y="174" width="5" height="3" rx="1.2" fill="#8de6f7" opacity="0.8"/>
<rect x="93" y="180" width="7" height="3" rx="1.5" fill="#bff6fc" opacity="0.6"/>
<!-- Watering can in left hand -->
<g>
<!-- Can body -->
<ellipse cx="54" cy="191" rx="9" ry="7.5" fill="url(#wateringCan)" stroke="#4984a9" stroke-width="1.4"/>
<rect x="53" y="196" width="10" height="3.5" rx="1.8" fill="#b8e0f3" stroke="#4984a9" stroke-width="0.7"/>
<!-- Handle -->
<path d="M46 188 Q41 195 52 193" stroke="#7c92a5" stroke-width="2.1" fill="none"/>
<!-- Spout -->
<rect x="62" y="191" width="13" height="2.8" rx="1.2" fill="#b8e0f3" stroke="#4984a9" stroke-width="1" transform="rotate(18 62 191)"/>
<ellipse cx="75.7" cy="193.2" rx="2" ry="3.5" fill="#c8eafd" stroke="#6794a7" stroke-width="0.8" transform="rotate(14 75.7 193.2)"/>
<!-- Reflection on can -->
<ellipse cx="51.5" cy="186.3" rx="2.1" ry="0.9" fill="#fff" opacity="0.35" />
</g>
<!-- Water droplets from can to flower -->
<g>
<ellipse cx="79" cy="195.5" rx="2" ry="3.5" fill="url(#dropletGrad)" opacity="0.7"/>
<ellipse cx="100" cy="200" rx="1.1" ry="1.7" fill="url(#dropletGrad)" opacity="0.65"/>
<ellipse cx="138" cy="205" rx="1.6" ry="2.2" fill="url(#dropletGrad)" opacity="0.6"/>
<ellipse cx="160" cy="210" rx="1.9" ry="2.3" fill="url(#dropletGrad)" opacity="0.5"/>
<ellipse cx="185" cy="215" rx="2.1" ry="2.8" fill="url(#dropletGrad)" opacity="0.7"/>
<ellipse cx="205" cy="220" rx="1.6" ry="2.3" fill="url(#dropletGrad)" opacity="0.8"/>
<!-- small splashes at the flower -->
<ellipse cx="211" cy="206" rx="1.5" ry="0.6" fill="#b9f2ff" opacity="0.7" />
<ellipse cx="209" cy="209" rx="0.7" ry="1.4" fill="#b9f2ff" opacity="0.45" />
</g>
</g>
<!-- Artistic motif: some circuit traces in the sand (left) -->
<g opacity="0.15">
<path d="M23 242 Q40 246 46 264 Q53 280 90 275" stroke="#438692" stroke-width="1.5" fill="none"/>
<circle cx="46" cy="264" r="2" fill="#438692"/>
<circle cx="90" cy="275" r="2.2" fill="#398289"/>
</g>
<g opacity="0.08">
<rect x="210" y="280" width="56" height="10" rx="5" fill="#1d415a"/>
<ellipse cx="250" cy="290" rx="13" ry="4.5" fill="#537583"/>
</g>
<!-- Foreground highlights for sand texture -->
<ellipse cx="98" cy="285" rx="38" ry="9" fill="#fff" opacity="0.11"/>
<ellipse cx="190" cy="277" rx="20" ry="5" fill="#fff" opacity="0.08"/>
</svg>
Judge's Analysis
Player 1's submission is more aligned with the prompt as it clearly depicts a robot watering a metallic flower in a desert setting.
The design is visually clear and creatively incorporates the robot's interaction with the flower.
Player 2's image lacks the robot and action specified in the prompt, making it less adherent to the theme despite its clean composition.
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
"Robot juggling planets in space."
"A cactus wearing a crown in a desert at sunset."
"An octopus juggling flaming swords underwater."