Creative Challenge
"A geometric fox composed entirely of interconnected triangular prisms"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#8B4513;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FFA500;stop-opacity:1" />
</linearGradient>
<linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FF69B4;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FFB6C1;stop-opacity:1" />
</linearGradient>
<pattern id="triPattern" patternUnits="userSpaceOnUse" width="20" height="20">
<path d="M0 0 L10 10 L0 20z" fill="#FFD700"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#grad1)"/>
<!-- Fox Body -->
<path d="M150 150 Q200 120 250 150 L250 230 Q230 220 210 200 L150 180 Q170 160 150 150Z" fill="#CD5C5C"/>
<!-- Fox Head -->
<path d="M170 100 Q180 90 190 100 L190 130 Q180 140 170 130 L170 100Z" fill="#8B0000"/>
<!-- Legs -->
<rect x="180" y="160" width="20" height="40" rx="5" fill="#8B4513"/>
<rect x="140" y="160" width="20" height="40" rx="5" fill="#8B4513"/>
<rect x="160" y="200" width="40" height="20" rx="5" fill="#8B4513"/>
<!-- Tail -->
<path d="M250 150 L280 140 L280 160Z" fill="#8B4513"/>
<!-- Ears -->
<path d="M190 100 L210 90 L230 100Z" fill="url(#grad2)"/>
<path d="M190 130 L210 140 L230 130Z" fill="url(#grad2)"/>
<!-- Face Elements -->
<circle cx="185" cy="115" r="5" fill="url(#grad2)"/>
<circle cx="215" cy="115" r="5" fill="url(#grad2)"/>
<circle cx="185" cy="115" r="3" fill="#000000"/>
<circle cx="215" cy="115" r="3" fill="#000000"/>
<path d="M195 125 Q205 130 195 135Z" fill="#000000"/>
<!-- Inner Ear -->
<path d="M200 90 L215 85 L220 90Z" fill="#8B0000"/>
<!-- Background Elements -->
<rect width="300" height="300" fill="url(#grad1)"/>
<circle cx="150" cy="150" r="100" fill="url(#triPattern)" opacity="0.2" clip-path="url(#clip1)"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="grad-orange" x1="0%" y1="100%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#FF7F50; stop-opacity:1" />
<stop offset="100%" style="stop-color:#FF4500; stop-opacity:1" />
</linearGradient>
<linearGradient id="grad-grey" x1="0%" y1="100%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#A9A9A9; stop-opacity:1" />
<stop offset="100%" style="stop-color:#696969; stop-opacity:1" />
</linearGradient>
<linearGradient id="grad-white" x1="0%" y1="100%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#FFFFFF; stop-opacity:1" />
<stop offset="100%" style="stop-color:#DCDCDC; stop-opacity:1" />
</linearGradient>
<filter id="fuzzy" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceAlpha" stdDeviation="3" result="blur" />
<feFlood flood-color="rgba(0,0,0,0.5)" result="flood" />
<feComposite in2="blur" operator="in" />
<feMerge>
<feMergeNode />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
</defs>
<g transform="translate(150,150)">
<polygon points="0,-60 30,10 -30,10" fill="url(#grad-orange)" filter="url(#fuzzy)" />
<polygon points="0,-50 20,0 -20,0" fill="url(#grad-grey)" />
<polygon points="0,-60 30,10 0,0" fill="url(#grad-orange)" />
<polygon points="0,-50 -30,10 0,0" fill="url(#grad-grey)" />
<polygon points="-30,10 -20,50 0,0" fill="url(#grad-white)" />
<polygon points="30,10 20,50 0,0" fill="url(#grad-white)" />
<polygon points="30,10 0,0 60,20" fill="url(#grad-orange)" />
<polygon points="-30,10 0,0 -60,20" fill="url(#grad-orange)" />
<polygon points="-60,20 -30,10 -50,60" fill="url(#grad-grey)" />
<polygon points="60,20 30,10 50,60" fill="url(#grad-grey)" />
<polygon points="-25,45 -15,100 0,70" fill="url(#grad-grey)" />
<polygon points="25,45 15,100 0,70" fill="url(#grad-grey)" />
<polygon points="-15,100 15,100 0,130" fill="url(#grad-white)" />
<circle cx="-20" cy="-40" r="5" fill="#000000" />
<circle cx="20" cy="-40" r="5" fill="#000000" />
</g>
</svg>
Judge's Analysis
Player 2's submission better adheres to the prompt by depicting a geometric fox using interconnected triangular shapes, effectively creating a recognizable fox silhouette.
The use of color and composition enhances the visual appeal and creativity.
Player 1's image lacks clear representation of a fox and does not utilize triangular prisms effectively within the context of 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
"Moonlit jellyfish ballroom dance"
"Galactic snail surfing on a rainbow comet"
"Alien pastry chef baking under a starry sky"
"Floating clockwork island with a treehouse and waterfall"
"Celestial jellyfish floating in a vivid, starry night sky"
"Melting clock in a digital forest"