Creative Challenge
"A cat levitating planets in a geometric galaxy"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="galaxyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#161616; stop-opacity:1" />
<stop offset="100%" style="stop-color:#4E4C7D; stop-opacity:1" />
</linearGradient>
<radialGradient id="planetGradient1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#ff5733; stop-opacity:1" />
<stop offset="100%" style="stop-color:#c70039; stop-opacity:1" />
</radialGradient>
<radialGradient id="planetGradient2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#33ff57; stop-opacity:1" />
<stop offset="100%" style="stop-color:#39c700; stop-opacity:1" />
</radialGradient>
<radialGradient id="planetGradient3" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#5733ff; stop-opacity:1" />
<stop offset="100%" style="stop-color:#7c00c7; stop-opacity:1" />
</radialGradient>
<filter id="glow">
<feFlood flood-color="rgba(255, 255, 255, 0.5)" result="flood" />
<feComposite in="flood" in2="SourceAlpha" operator="in" result="shadow" />
<feGaussianBlur in="shadow" stdDeviation="4" result="blur" />
<feMerge>
<feMergeNode />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#galaxyGradient)" />
<g transform="translate(150,250)">
<path d="M-20,-30 Q0,-60 20,-30 Q0,-40 -20,-30" fill="#ffd700" stroke="#ffcc00" stroke-width="2" filter="url(#glow)"/>
</g>
<circle cx="100" cy="100" r="20" fill="url(#planetGradient1)" />
<circle cx="200" cy="80" r="15" fill="url(#planetGradient2)" />
<circle cx="160" cy="150" r="25" fill="url(#planetGradient3)" />
<g fill="#fff" font-family="Arial" font-size="12" text-anchor="middle">
<text x="150" y="290">A Cat Levitation Cosmic Dance</text>
</g>
<path d="M150,200 Q145,170 120,150 T85,120 Q100,140 120,155 C140,170 150,190 150,200" fill="#8f5e2e"/>
<circle cx="150" cy="150" r="4" fill="#000" />
<circle cx="135" cy="145" r="2" fill="#000" />
<circle cx="170" cy="140" r="5" fill="#000" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<radialGradient id="catFur" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#ffffff;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ff99cc;stop-opacity:1" />
</radialGradient>
<pattern id="starField" x="0" y="0" width="100%" height="100%">
<circle cx="50" cy="50" r="1" fill="#fff"/>
<circle cx="150" cy="70" r="1.5" fill="#fff"/>
<circle cx="200" cy="100" r="1" fill="#fff"/>
</pattern>
<linearGradient id="galaxy" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#000033;stop-opacity:1" />
<stop offset="100%" style="stop-color:#000066;stop-opacity:1" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="#000033"/>
<!-- Galaxy Structure -->
<path d="M150,20 L250,150 L150,280 L50,150 Z" fill="url(#galaxy)" opacity="0.8"/>
<path d="M150,20 L280,150 L150,280 L20,150 Z" fill="none" stroke="#00ffff" stroke-width="2"/>
<!-- Cat -->
<g transform="translate(150,180)">
<circle cx="0" cy="0" r="30" fill="url(#catFur)"/>
<path d="M-40,30 Q-60,0 -40,-30" transform="rotate(45)" fill="#ff99cc"/>
<path d="M40,30 Q60,0 40,-30" transform="rotate(-45)" fill="#ff99cc"/>
<circle cx="-15" cy="-20" r="5" fill="#000"/>
<circle cx="15" cy="-20" r="5" fill="#000"/>
</g>
<!-- Planets -->
<g transform="translate(150,100)">
<circle cx="-50" cy="-50" r="15" fill="url(#planet1)"/>
<circle cx="50" cy="-50" r="20" fill="url(#planet2)"/>
<circle cx="0" cy="50" r="25" fill="url(#planet3)"/>
</g>
<!-- Floating Elements -->
<g opacity="0.7">
<circle cx="50" cy="50" r="20" fill="#00ffff"/>
<circle cx="250" cy="50" r="15" fill="#ff00ff"/>
<circle cx="200" cy="250" r="10" fill="#ffff00"/>
</g>
<!-- Energy Field -->
<path d="M100,100 Q150,50 200,100" stroke="#00ffff" stroke-width="4" fill="none"/>
<path d="M100,200 Q150,250 200,200" stroke="#ff00ff" stroke-width="4" fill="none"/>
<!-- Stars -->
<rect width="300" height="300" fill="url(#starField)"/>
</svg>
Judge's Analysis
Player 2's image demonstrates a more dynamic and visually appealing composition with a clear geometric structure.
The use of color and shapes effectively creates a sense of a galaxy and enhances the theme of levitation.
In contrast, Player 1's image, while creative, lacks the same level of complexity and visual intrigue found in Player 2's submission.
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
"Sneezing snail with a top hat"
"Rainbow snail trail on a moonlit lily pad"
"Lighthouse on a cliff guiding paper boats through a sky of stars"
"Melting clock dripping into a swirling teacup"
"Surreal tree growing through an ancient clock"
"Surreal clock melting over a tree branch"