Creative Challenge
"Surreal owl with clock eyes in a starry sky, style: pointillism"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="skyGlow" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#1a0033"/>
<stop offset="100%" stop-color="#000011"/>
</radialGradient>
<pattern id="stars" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="0.5" fill="white" opacity="0.6"/>
</pattern>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#skyGlow)"/>
<rect x="0" y="0" width="300" height="300" fill="url(#stars)"/>
<!-- Owl Body - Pointillism Effect -->
<g id="owlBody">
<circle cx="150" cy="150" r="80" fill="none" stroke="#553366" stroke-width="2"/>
<g id="dots">
<!-- Generated 200 random dots for owl body -->
<script type="text/javascript">
for(let i=0; i<200; i++) {
const angle = Math.random() * Math.PI * 2;
const r = Math.random() * 75;
const x = 150 + Math.cos(angle) * r;
const y = 150 + Math.sin(angle) * r;
document.write(`<circle cx="${x}" cy="${y}" r="1" fill="#998899"/>`);
}
</script>
</g>
</g>
<!-- Clock Eyes -->
<g id="leftEye" transform="translate(120,130)">
<circle cx="0" cy="0" r="25" fill="#ddccee"/>
<line x1="0" y1="0" x2="0" y2="-15" stroke="#330066" stroke-width="2"/>
<line x1="0" y1="0" x2="10" y2="5" stroke="#330066" stroke-width="3"/>
<circle cx="0" cy="0" r="3" fill="#330066"/>
</g>
<g id="rightEye" transform="translate(180,130)">
<circle cx="0" cy="0" r="25" fill="#ddccee"/>
<line x1="0" y1="0" x2="-5" y2="-20" stroke="#330066" stroke-width="2"/>
<line x1="0" y1="0" x2="15" y2="5" stroke="#330066" stroke-width="3"/>
<circle cx="0" cy="0" r="3" fill="#330066"/>
</g>
<!-- Beak -->
<path d="M140,170 Q150,180 160,170 Q150,185 140,170" fill="#ffcc66"/>
<!-- Additional Stars -->
<g id="brightStars">
<circle cx="50" cy="50" r="1.5" fill="white"/>
<circle cx="250" cy="70" r="2" fill="white"/>
<circle cx="30" cy="200" r="1.8" fill="white"/>
<circle cx="270" cy="220" r="1.7" fill="white"/>
<circle cx="150" cy="40" r="2.2" fill="white"/>
</g>
<!-- Decorative Time Spirals -->
<path d="M70,150 Q90,100 120,90 T170,70" fill="none" stroke="#6644aa" stroke-width="1" opacity="0.5"/>
<path d="M230,150 Q210,100 180,90 T130,70" fill="none" stroke="#6644aa" stroke-width="1" opacity="0.5"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#0a0a23"/>
<stop offset="50%" stop-color="#1e0033"/>
<stop offset="100%" stop-color="#000000"/>
</linearGradient>
<pattern id="pointillism" patternUnits="userSpaceOnUse" width="6" height="6">
<circle cx="1" cy="1" r="0.7" fill="#ff6347"/>
<circle cx="4" cy="3" r="0.5" fill="#ffd700"/>
<circle cx="3" cy="5" r="0.4" fill="#7fffd4"/>
<circle cx="5" cy="1" r="0.5" fill="#8a2be2"/>
</pattern>
<radialGradient id="clockRad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ffffff"/>
<stop offset="100%" stop-color="#cccccc"/>
</radialGradient>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#skyGrad)"/>
<circle cx="20" cy="50" r="1.2" fill="white" opacity="0.8"/>
<circle cx="70" cy="100" r="1" fill="white" opacity="0.4"/>
<circle cx="150" cy="30" r="1.3" fill="white" opacity="0.9"/>
<circle cx="250" cy="60" r="0.8" fill="white" opacity="0.5"/>
<circle cx="280" cy="150" r="1.5" fill="white" opacity="1"/>
<circle cx="240" cy="200" r="1" fill="white" opacity="0.7"/>
<circle cx="180" cy="250" r="1.2" fill="white" opacity="0.6"/>
<circle cx="100" cy="270" r="0.9" fill="white" opacity="0.8"/>
<circle cx="50" cy="230" r="1" fill="white" opacity="0.5"/>
<circle cx="90" cy="190" r="1.1" fill="white" opacity="0.8"/>
<circle cx="200" cy="120" r="1" fill="white" opacity="0.7"/>
<circle cx="260" cy="90" r="0.8" fill="white" opacity="0.6"/>
<circle cx="130" cy="80" r="1" fill="white" opacity="0.8"/>
<circle cx="160" cy="210" r="1.2" fill="white" opacity="0.6"/>
<circle cx="210" cy="270" r="1" fill="white" opacity="0.9"/>
<g id="owl">
<ellipse cx="150" cy="150" rx="40" ry="50" fill="url(#pointillism)" stroke="black" stroke-width="1"/>
<polygon points="150,160 143,175 157,175" fill="#ffdb58" stroke="black" stroke-width="0.5"/>
<path d="M110,160 C80,180 80,220 110,230 C125,220 120,180 110,160" fill="url(#pointillism)" stroke="black" stroke-width="1" opacity="0.8"/>
<path d="M190,160 C220,180 220,220 190,230 C175,220 180,180 190,160" fill="url(#pointillism)" stroke="black" stroke-width="1" opacity="0.8"/>
<polygon points="135,100 125,70 145,90" fill="url(#pointillism)" stroke="black" stroke-width="0.5" opacity="0.8"/>
<polygon points="165,100 175,70 155,90" fill="url(#pointillism)" stroke="black" stroke-width="0.5" opacity="0.8"/>
</g>
<g transform="translate(130,130)">
<circle cx="0" cy="0" r="12" fill="url(#clockRad)" stroke="black" stroke-width="1.5"/>
<circle cx="0" cy="-10" r="1" fill="black"/>
<circle cx="5" cy="-8.66" r="1" fill="black"/>
<circle cx="8.66" cy="-5" r="1" fill="black"/>
<circle cx="10" cy="0" r="1" fill="black"/>
<circle cx="8.66" cy="5" r="1" fill="black"/>
<circle cx="5" cy="8.66" r="1" fill="black"/>
<circle cx="0" cy="10" r="1" fill="black"/>
<circle cx="-5" cy="8.66" r="1" fill="black"/>
<circle cx="-8.66" cy="5" r="1" fill="black"/>
<circle cx="-10" cy="0" r="1" fill="black"/>
<circle cx="-8.66" cy="-5" r="1" fill="black"/>
<circle cx="-5" cy="-8.66" r="1" fill="black"/>
<line x1="0" y1="0" x2="0" y2="-7" stroke="black" stroke-width="1.5"/>
<line x1="0" y1="0" x2="6" y2="0" stroke="black" stroke-width="1.5"/>
</g>
<g transform="translate(170,130) rotate(-10)">
<circle cx="0" cy="0" r="12" fill="url(#clockRad)" stroke="black" stroke-width="1.5"/>
<circle cx="0" cy="-10" r="1" fill="black"/>
<circle cx="5" cy="-8.66" r="1" fill="black"/>
<circle cx="8.66" cy="-5" r="1" fill="black"/>
<circle cx="10" cy="0" r="1" fill="black"/>
<circle cx="8.66" cy="5" r="1" fill="black"/>
<circle cx="5" cy="8.66" r="1" fill="black"/>
<circle cx="0" cy="10" r="1" fill="black"/>
<circle cx="-5" cy="8.66" r="1" fill="black"/>
<circle cx="-8.66" cy="5" r="1" fill="black"/>
<circle cx="-10" cy="0" r="1" fill="black"/>
<circle cx="-8.66" cy="-5" r="1" fill="black"/>
<circle cx="-5" cy="-8.66" r="1" fill="black"/>
<line x1="0" y1="0" x2="0" y2="-7" stroke="black" stroke-width="1.5"/>
<line x1="0" y1="0" x2="6" y2="0" stroke="black" stroke-width="1.5"/>
</g>
</svg>
Judge's Analysis
Player 2's submission effectively captures the surreal and whimsical nature of the prompt with the owl prominently featuring clock eyes.
The use of pointillism is well-executed, creating a textured appearance that enhances the surreal quality.
The background complements the figure, presenting a clear starry sky that adheres closely to 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
"A cat playing chess with a robot"
"A surrealist clock with melting hands turning into a river"
"A giraffe wearing a disco ball helmet in a 70s roller rink"
"A giraffe playing a grand piano under a starry sky"
"Glowing jellyfish wearing tiny top hats, drifting through a cosmic starfield"
"A giraffe painting surreal clouds on a night sky with its elongated neck"