Creative Challenge
"A tree shaped like a giant, curling wave, with leaves that resemble sea foam"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="oceanGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#0077be" />
<stop offset="50%" stop-color="#0099ff" />
<stop offset="100%" stop-color="#00bfff" />
</linearGradient>
<radialGradient id="foamGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="white" stop-opacity="0.8" />
<stop offset="100%" stop-color="white" stop-opacity="0" />
</radialGradient>
</defs>
<path d="M20 250 C 50 200, 100 100, 150 50 C 200 100, 250 200, 280 250" fill="url(#oceanGradient)" stroke="#004c8c" stroke-width="3" />
<path d="M20 250 C 50 180, 100 80, 150 30 C 200 80, 250 180, 280 250" fill="none" stroke="#004c8c" stroke-width="3"/>
<g transform="translate(50, 70)">
<circle cx="0" cy="0" r="10" fill="url(#foamGradient)" />
<circle cx="15" cy="-5" r="8" fill="url(#foamGradient)" />
<circle cx="25" cy="10" r="12" fill="url(#foamGradient)" />
</g>
<g transform="translate(100, 30)" >
<circle cx="0" cy="0" r="15" fill="url(#foamGradient)" />
<circle cx="-10" cy="15" r="10" fill="url(#foamGradient)" />
<circle cx="20" cy="20" r="12" fill="url(#foamGradient)" />
</g>
<g transform="translate(180, 20)">
<ellipse cx="0" cy="0" rx="18" ry="12" fill="url(#foamGradient)" />
<ellipse cx="20" cy="10" rx="15" ry="10" fill="url(#foamGradient)" />
<ellipse cx="-10" cy="25" rx="12" ry="8" fill="url(#foamGradient)" />
</g>
<g transform="translate(230, 70)">
<circle cx="0" cy="0" r="10" fill="url(#foamGradient)" />
<circle cx="15" cy="-5" r="8" fill="url(#foamGradient)" />
<circle cx="25" cy="10" r="12" fill="url(#foamGradient)" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with subtle gradient -->
<rect width="300" height="300" fill="url(#bgGradient)"/>
<!-- Background gradient -->
<defs>
<radialGradient id="bgGradient" cx="150" cy="150" r="150" fx="150" fy="150">
<stop offset="0" stop-color="#87CEEB"/>
<stop offset="1" stop-color="#E0F6FF"/>
</radialGradient>
<!-- Wave path gradient -->
<linearGradient id="waveGradient" x1="0" y1="0" x2="300" y2="0">
<stop offset="0" stop-color="#0097A7"/>
<stop offset="1" stop-color="#00BFFF"/>
</linearGradient>
<!-- Trunk texture -->
<linearGradient id="trunkGradient" x1="0" y1="0" x2="0" y2="100">
<stop offset="0" stop-color="#8B4513"/>
<stop offset="1" stop-color="#4A2B0F"/>
</linearGradient>
<!-- Foam texture -->
<filter id="foamTexture">
<feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch" />
</filter>
</defs>
<!-- Trunk -->
<rect x="130" y="220" width="40" height="80" fill="url(#trunkGradient)" transform="rotate(-30 175 220)"/>
<!-- Wave path -->
<path d="M50,280 C100,260 200,240 250,220 C300,200 320,180 300,140 L300,50 L0,50 L0,140 C-20,180 20,200 50,220 C100,240 150,260 180,280 C200,300 150,320 100,300"
fill="url(#waveGradient)" opacity="0.8"/>
<!-- Wave texture -->
<path d="M50,280 C100,260 200,240 250,220 C300,200 320,180 300,140 L300,50 L0,50 L0,140 C-20,180 20,200 50,220 C100,240 150,260 180,280 C200,300 150,320 100,300"
fill="white" filter="url(#foamTexture)" opacity="0.3"/>
<!-- Foam leaves -->
<g id="foam">
<circle cx="150" cy="150" r="20" fill="white" opacity="0.6"/>
<circle cx="200" cy="170" r="15" fill="white" opacity="0.6"/>
<circle cx="170" cy="160" r="10" fill="white" opacity="0.6"/>
<circle cx="180" cy="190" r="12" fill="white" opacity="0.6"/>
<circle cx="160" cy="180" r="8" fill="white" opacity="0.6"/>
<circle cx="190" cy="165" r="18" fill="white" opacity="0.6"/>
</g>
</svg>
Judge's Analysis
Player 2's submission more effectively interprets the prompt with a dynamic, curling wave shape and bubbles that resemble sea foam, capturing the essence of a tree-wave hybrid.
The use of color and form enhances the visual appeal and creativity.
Player 1's image is less dynamic and lacks the distinct curling shape and sea foam detail described in the prompt.
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
"Rainbow-colored octopus painting the ocean with its tentacles"
"Wombats in top hats playing miniature violins under a glowing full moon"
"A cyberpunk octopus playing a violin"
"Alien ballerina gliding on a rainbow ringed Saturn"
"Octopus in a tuxedo juggling teacups over a coral ballet stage"
"Chameleon juggling colorful planets in space"