Creative Challenge
"A chameleon on a disco ball, reflecting rainbow light"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="disco-ball-gradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#fff" />
<stop offset="100%" stop-color="#ccc" />
</radialGradient>
<linearGradient id="chameleon-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#00f" />
<stop offset="25%" stop-color="#0f0" />
<stop offset="50%" stop-color="#ff0" />
<stop offset="75%" stop-color="#f00" />
<stop offset="100%" stop-color="#f0f" />
</linearGradient>
<pattern id="disco-squares" width="20" height="20" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="10" height="10" fill="#888" />
<rect x="10" y="10" width="10" height="10" fill="#888" />
</pattern>
</defs>
<circle cx="150" cy="150" r="100" fill="url(#disco-ball-gradient)">
<animateTransform attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="10s" repeatCount="indefinite"/>
</circle>
<g transform="translate(100,100)">
<path d="M 50 50 C 60 30, 70 10, 90 20 C 110 30, 120 60, 100 80 C 80 100, 40 90, 50 50 Z" fill="url(#chameleon-gradient)" stroke="#000" stroke-width="2">
<animateTransform attributeName="transform" type="scale" values="1;1.1;1" dur="5s" repeatCount="indefinite" />
</path>
<circle cx="60" cy="40" r="5" fill="white">
<animate attributeName="fill" values="yellow;red;blue;yellow" dur="4s" repeatCount="indefinite" />
</circle>
<circle cx="70" cy="40" r="5" fill="white">
<animate attributeName="fill" values="red;blue;yellow;red" dur="4s" repeatCount="indefinite" />
</circle>
<ellipse cx="80" cy="60" rx="8" ry="4" fill="red" transform="rotate(20, 80, 60)" />
</g>
<g fill="url(#disco-squares)">
<circle cx="50" cy="50" r="5"/>
<circle cx="250" cy="50" r="5"/>
<circle cx="50" cy="250" r="5"/>
<circle cx="250" cy="250" r="5"/>
<circle cx="150" cy="20" r="5"/>
<circle cx="150" cy="280" r="5"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id=" discoBallGrad">
<stop offset="0%" stop-color="#fff"/>
<stop offset="100%" stop-color="#999"/>
</radialGradient>
<pattern id="facetPattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse">
<circle cx="20" cy="20" r="15" fill="url(# discoBallGrad)"/>
</pattern>
<linearGradient id="chameleonGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#32CD32"/>
<stop offset="100%" stop-color="#00BFFF"/>
</linearGradient>
</defs>
<rect width="300" height="300" fill="#000"/>
<g transform="translate(150,150)">
<circle cx="0" cy="0" r="100" fill="url(#facetPattern)"/>
<g transform="rotate(45)" animation="spin 4s linear infinite">
<g transform="translate(50,0)">
<circle cx="0" cy="0" r="15" fill="url(#chameleonGrad)"/>
<path d="M-15-10C-15-10,-10-15,0-15" fill="url(#chameleonGrad)"/>
<path d="M15-10C15-10,10-15,0-15" fill="url(#chameleonGrad)"/>
<path d="M0-20Q0-25,0-30" fill="url(#chameleonGrad)"/>
</g>
</g>
<circle cx="0" cy="0" r="120" fill="none">
<animate attributeName="r" from="0" to="120" dur="2s" repeatCount="indefinite"/>
<animate attributeName="opacity" from="1" to="0" dur="2s" repeatCount="indefinite"/>
</circle>
<circle cx="0" cy="0" r="110" fill="none">
<animate attributeName="r" from="0" to="110" dur="2s" repeatCount="indefinite"/>
<animate attributeName="opacity" from="1" to="0" dur="2s" repeatCount="indefinite"/>
</circle>
<circle cx="0" cy="0" r="100" fill="none">
<animate attributeName="r" from="0" to="100" dur="2s" repeatCount="indefinite"/>
<animate attributeName="opacity" from="1" to="0" dur="2s" repeatCount="indefinite"/>
</circle>
</g>
<g transform="translate(150,150) rotate(45)">
<circle cx="50" cy="0" r="20" fill="url(#chameleonGrad)"/>
<rect x="40" y="-10" width="40" height="20" rx="10" fill="url(#chameleonGrad)"/>
<path d="M80 0Q80-10,70-15" fill="url(#chameleonGrad)"/>
</g>
<g transform="translate(150,150)">
<circle cx="0" cy="0" r="120" fill="none">
<animate attributeName="r" from="0" to="120" dur="2s" repeatCount="indefinite"/>
<animate attributeName="opacity" from="1" to="0" dur="2s" repeatCount="indefinite"/>
</circle>
<circle cx="0" cy="0" r="110" fill="none">
<animate attributeName="r" from="0" to="110" dur="2s" repeatCount="indefinite"/>
<animate attributeName="opacity" from="1" to="0" dur="2s" repeatCount="indefinite"/>
</circle>
<circle cx="0" cy="0" r="100" fill="none">
<animate attributeName="r" from="0" to="100" dur="2s" repeatCount="indefinite"/>
<animate attributeName="opacity" from="1" to="0" dur="2s" repeatCount="indefinite"/>
</circle>
</g>
</svg>
Judge's Analysis
Player 1's submission is more colorful and embraces the concept of a chameleon reflecting rainbow light on a disco ball.
The use of vibrant colors and the depiction of a recognizable disco ball enhance the adherence to the prompt.
Player 2's image, while creative, lacks the distinctive disco ball element and the vibrant reflection expected in the theme.
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
"Intergalactic snail race on a rainbow road"
"Flamingo on roller skates juggling pineapples"
"Dinosaur in a Tea Cup"
"Whale ballroom: whales in elegant attire dancing gracefully on ocean currents"
"Crane lifting a giant surreal watermelon above a silhouetted skyline"
"Floating city above a serene ocean, styled in retro-futuristic art deco"