Creative Challenge
"Ceiling fan made of rainbow-colored leaves spinning"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="red"/>
<stop offset="14%" stop-color="orange"/>
<stop offset="28%" stop-color="yellow"/>
<stop offset="42%" stop-color="green"/>
<stop offset="56%" stop-color="blue"/>
<stop offset="70%" stop-color="indigo"/>
<stop offset="84%" stop-color="violet"/>
<stop offset="100%" stop-color="red"/>
</linearGradient>
<radialGradient id="light" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="rgba(255,255,255,0.7)"/>
<stop offset="100%" stop-color="transparent"/>
</radialGradient>
</defs>
<g transform="translate(150,150)">
<ellipse cx="0" cy="0" rx="10" ry="5" fill="silver"/>
<g transform="rotate(10)">
<path d="M 0,0 C 20, -50 80, -40 100, 0 C 80, 40 20, 50 0, 0" fill="url(#rainbow)" transform="scale(0.7)"/>
<path d="M 0,0 C 20, -50 80, -40 100, 0 C 80, 40 20, 50 0, 0" fill="url(#rainbow)" transform="scale(0.7) rotate(120)"/>
<path d="M 0,0 C 20, -50 80, -40 100, 0 C 80, 40 20, 50 0, 0" fill="url(#rainbow)" transform="scale(0.7) rotate(240)"/>
</g>
<animateTransform attributeName="transform"
attributeType="XML"
type="rotate"
from="0 150 150"
to="360 150 150"
dur="10s"
repeatCount="indefinite"/>
<ellipse cx="0" cy="0" rx="20" ry="10" fill="url(#light)" opacity="0.8"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="rainbow" x1="0" x2="0" y1="0" y2="1">
<stop offset="0" stop-color="#FF69B4" />
<stop offset="0.2" stop-color="#FFC67D" />
<stop offset="0.4" stop-color="#F7DC6F" />
<stop offset="0.6" stop-color="#8BC34A" />
<stop offset="0.8" stop-color="#45B3FA" />
<stop offset="1" stop-color="#9C27B0" />
</linearGradient>
<pattern id="leaf-pattern" patternUnits="userSpaceOnUse" width="20" height="20">
<rect x="0" y="0" width="20" height="20" fill="url(#rainbow)" rx="2" />
</pattern>
</defs>
<circle cx="150" cy="150" r="120" fill="none" stroke="#333" stroke-width="2" />
<g transform="rotate(0 150 150)">
<rect x="130" y="130" width="20" height="40" fill="url(#leaf-pattern)" rx="2" transform="rotate(30 150 150)" />
<rect x="130" y="130" width="20" height="40" fill="url(#leaf-pattern)" rx="2" transform="rotate(60 150 150)" />
<rect x="130" y="130" width="20" height="40" fill="url(#leaf-pattern)" rx="2" transform="rotate(90 150 150)" />
<rect x="130" y="130" width="20" height="40" fill="url(#leaf-pattern)" rx="2" transform="rotate(120 150 150)" />
<rect x="130" y="130" width="20" height="40" fill="url(#leaf-pattern)" rx="2" transform="rotate(150 150 150)" />
<rect x="130" y="130" width="20" height="40" fill="url(#leaf-pattern)" rx="2" transform="rotate(180 150 150)" />
<rect x="130" y="130" width="20" height="40" fill="url(#leaf-pattern)" rx="2" transform="rotate(210 150 150)" />
<rect x="130" y="130" width="20" height="40" fill="url(#leaf-pattern)" rx="2" transform="rotate(240 150 150)" />
<rect x="130" y="130" width="20" height="40" fill="url(#leaf-pattern)" rx="2" transform="rotate(270 150 150)" />
<rect x="130" y="130" width="20" height="40" fill="url(#leaf-pattern)" rx="2" transform="rotate(300 150 150)" />
<rect x="130" y="130" width="20" height="40" fill="url(#leaf-pattern)" rx="2" transform="rotate(330 150 150)" />
</g>
<animateTransform attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="10s" repeatCount="indefinite" />
</svg>
Judge's Analysis
Player 1's submission effectively incorporates the idea of a ceiling fan with rainbow-colored leaves, as seen in the distinct leaf shapes and vibrant color transitions.
The dynamic composition suggests motion, aligning with the prompt of spinning.
Player 2's design, while colorful, lacks clear representation of leaves and a sense of motion, making Player 1's image more aligned with 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
"Flying fish playing chess on a floating lily pad"
"Squirrel in a space helmet floating among stars"
"Snowman DJ mixing beats under a neon aurora"
"A cat in a wizard hat, casting a spell on a ghostly fish"
"Flying fish surfing on rainbow waves"
"A cactus wearing a bow tie and monocle, sipping tea in the desert"