Creative Challenge
"Cactus with sunglasses surfing on a lava wave"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="lava1" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ff3300"/>
<stop offset="100%" stop-color="#ff9900"/>
</linearGradient>
<linearGradient id="sunglass" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#2d3436"/>
<stop offset="100%" stop-color="#000000"/>
</linearGradient>
<radialGradient id="cactus" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#80ff80"/>
<stop offset="100%" stop-color="#008000"/>
</radialGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#lava1)"/>
<!-- Lava wave -->
<path d="M-20 220 Q150 150 320 230 L320 300 L-20 300 Z" fill="#ff5500" filter="url(#glow)">
<animate attributeName="d" values="
M-20 220 Q150 150 320 230 L320 300 L-20 300 Z;
M-20 230 Q150 160 320 240 L320 300 L-20 300 Z;
M-20 220 Q150 150 320 230 L320 300 L-20 300 Z"
dur="3s" repeatCount="indefinite"/>
</path>
<!-- Surfboard -->
<ellipse cx="150" cy="190" rx="50" ry="15" fill="#00ffff" transform="rotate(-10 150 190)"/>
<!-- Cactus body -->
<rect x="130" y="120" width="40" height="100" rx="20" fill="url(#cactus)"/>
<rect x="110" y="140" width="20" height="60" rx="10" fill="url(#cactus)" transform="rotate(-15 110 140)"/>
<rect x="170" y="140" width="20" height="60" rx="10" fill="url(#cactus)" transform="rotate(15 170 140)"/>
<!-- Sunglasses -->
<path d="M100 160 Q140 130 200 160 L180 170 Q140 150 100 170 Z" fill="url(#sunglass)"/>
<circle cx="130" cy="155" r="12" fill="#ffffff"/>
<circle cx="170" cy="155" r="12" fill="#ffffff"/>
<path d="M125 155 l5 -5 M165 155 l5 -5" stroke="#000000" stroke-width="2"/>
<!-- Lava sparks -->
<g fill="#ffdd00">
<circle cx="50" cy="270" r="3">
<animate attributeName="cy" from="270" to="230" dur="1.5s" repeatCount="indefinite"/>
</circle>
<circle cx="250" cy="260" r="3">
<animate attributeName="cy" from="260" to="220" dur="1.2s" repeatCount="indefinite"/>
</circle>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="cactusGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" style="stop-color: #8B4513; stop-opacity: 1"/>
<stop offset="100%" style="stop-color: #FFD700; stop-opacity: 1"/>
</linearGradient>
<linearGradient id="waveGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" style="stop-color: #FF6347; stop-opacity: 1"/>
<stop offset="100%" style="stop-color: #FF4500; stop-opacity: 1"/>
</linearGradient>
<pattern id="lavaPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<rect width="10" height="10" fill="#CD5C5C"/>
<circle cx="5" cy="5" r="3" fill="#FF4500"/>
</pattern>
</defs>
<rect width="300" height="300" fill="#8B4513"/>
<path d="M150 100 q50 -50 100 0 T300 250 q-50 50 -100 0 T0 250 q50 -50 100 0 T150 100 Z" fill="url(#cactusGradient)"/>
<circle cx="150" cy="100" r="15" fill="#FFD700"/>
<rect x="145" y="90" width="10" height="20" fill="#000000"/>
<rect x="145" y="90" width="10" height="10" fill="#FFFFFF"/>
<rect x="155" y="90" width="10" height="20" fill="#000000"/>
<rect x="155" y="90" width="10" height="10" fill="#FFFFFF"/>
<path d="M150 200 q0 -50 50 -100 T250 200 q0 50 -50 100 T150 200 Z" fill="url(#waveGradient)" stroke="#CD5C5C" stroke-width="5"/>
<path d="M100 200 q0 -50 50 -100 T150 200 Z" fill="url(#lavaPattern)"/>
<path d="M200 200 q0 -50 50 -100 T250 200 Z" fill="url(#lavaPattern)"/>
<path d="M150 250 q0 -50 50 -100 T250 250 q0 50 -50 100 T150 250 Z" fill="url(#lavaPattern)"/>
<path d="M150 200 q0 -50 50 -100 T250 200 q0 50 -50 100 T150 200 Z" fill="url(#lavaPattern)"/>
</svg>
Judge's Analysis
Player 1's image clearly depicts a cactus with sunglasses on a surfboard atop a lava wave, adhering closely to the prompt.
The use of bright colors and simple shapes enhances the visual appeal and clarity of the concept.
In contrast, Player 2's abstract approach makes it difficult to discern the elements of the prompt, reducing both adherence and clarity.
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
"Floating clock made of clouds in a stormy sky"
"A lighthouse shining beams through a swirling night storm"
"Intergalactic snail race on a rainbow comet track"
"Volcano spewing rainbow-colored lava under a crescent moon"
"Octopus juggling planets under the ocean"
"Van Gogh's Starry Night with neon-colored galaxies"