Back

SVG Drawing Match #1044

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal clock tower melting under a rainbow sky, Pointillism style"

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Rainbow Gradient for the sky -->
    <linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#ff0000"/>
      <stop offset="16%" stop-color="#ff7f00"/>
      <stop offset="33%" stop-color="#ffff00"/>
      <stop offset="50%" stop-color="#00ff00"/>
      <stop offset="66%" stop-color="#0000ff"/>
      <stop offset="83%" stop-color="#4b0082"/>
      <stop offset="100%" stop-color="#8f00ff"/>
    </linearGradient>
    <!-- Pattern for pointillism dots -->
    <pattern id="pointillism" patternUnits="userSpaceOnUse" width="4" height="4">
      <circle cx="2" cy="2" r="1" fill="rgba(0,0,0,0.2)" />
    </pattern>
  </defs>
  
  <!-- Background with rainbow sky and pointillism overlay -->
  <rect width="300" height="300" fill="url(#rainbow)" />
  <rect width="300" height="300" fill="url(#pointillism)" opacity="0.4" />

  <!-- Surreal melting clock tower -->
  <g id="clock-tower" transform="translate(100, 50)">
    <!-- Tower body, melting drips -->
    <path d="M30,0 
             C20,15, 20,35, 25,50 
             L25,100 
             C25,115, 40,120, 35,140 
             C30,155, 20,160, 20,175 
             L20,200 
             C20,210, 30,215, 30,225 
             L30,240 
             C30,250, 10,255, 15,265 
             C20,275, 40,280, 35,290 
             L35,300 
             L45,300 
             L45,290 
             C40,280, 60,275, 65,265 
             C70,255, 50,250, 50,240 
             L50,225 
             C50,215, 60,210, 60,200 
             L60,175 
             C60,160, 50,155, 45,140 
             C40,120, 55,115, 55,100 
             L55,50 
             C60,35, 60,15, 50,0 
             Z" fill="#888" stroke="#555" stroke-width="2"/>
    
    <!-- Melting clock face -->
    <g id="clock-face" transform="translate(40,20)">
      <!-- Dripping circular clock face -->
      <circle cx="15" cy="15" r="15" fill="#fff" stroke="#333" stroke-width="2"/>
      <!-- Clock hands -->
      <line x1="15" y1="15" x2="15" y2="5" stroke="#333" stroke-width="2" />
      <line x1="15" y1="15" x2="25" y2="15" stroke="#333" stroke-width="2" />
      <!-- Melting effect: drips on the clock face -->
      <path d="M10,30 C8,35, 12,40, 15,40 C18,40, 22,35, 20,30 Z" fill="#fff" stroke="#333" stroke-width="1"/>
    </g>
    
    <!-- Additional melting drips on the tower -->
    <g id="drips">
      <ellipse cx="30" cy="105" rx="8" ry="3" fill="#888" />
      <ellipse cx="55" cy="105" rx="8" ry="3" fill="#888" />
      <ellipse cx="25" cy="155" rx="6" ry="2" fill="#888" />
      <ellipse cx="55" cy="155" rx="6" ry="2" fill="#888" />
      <ellipse cx="30" cy="205" rx="7" ry="3" fill="#888" />
      <ellipse cx="60" cy="205" rx="7" ry="3" fill="#888" />
    </g>
  </g>
  
  <!-- Extra pointillism touches in the foreground -->
  <g id="dots">
    <circle cx="80" cy="250" r="1.5" fill="#222" opacity="0.7"/>
    <circle cx="90" cy="260" r="1.2" fill="#222" opacity="0.7"/>
    <circle cx="100" cy="255" r="1" fill="#222" opacity="0.7"/>
    <circle cx="110" cy="245" r="1.6" fill="#222" opacity="0.7"/>
    <circle cx="120" cy="250" r="1.3" fill="#222" opacity="0.7"/>
    <circle cx="130" cy="240" r="1.4" fill="#222" opacity="0.7"/>
    <circle cx="140" cy="255" r="1.1" fill="#222" opacity="0.7"/>
    <circle cx="150" cy="248" r="1.5" fill="#222" opacity="0.7"/>
  </g>
</svg>
SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Rainbow Sky -->
  <linearGradient id="rainbow" x1="0" x2="0" y1="0" y2="1">
    <stop offset="0" stop-color="#FF69B4" />
    <stop offset="0.2" stop-color="#FFC0CB" />
    <stop offset="0.4" stop-color="#FFFF00" />
    <stop offset="0.6" stop-color="#00FF00" />
    <stop offset="0.8" stop-color="#0000FF" />
    <stop offset="1" stop-color="#8F00FF" />
  </linearGradient>
  <rect x="0" y="0" width="300" height="300" fill="url(#rainbow)" />

  <!-- Clock Tower -->
  <g transform="translate(150, 150)">
    <g id="clock-tower">
      <rect x="-50" y="-100" width="100" height="200" rx="10" fill="#AAAAAA" />
      <circle cx="0" cy="-50" r="20" fill="#AAAAAA" />
      <circle cx="0" cy="50" r="20" fill="#AAAAAA" />
      <path d="M -30 -80 C -30 -60, -20 -60, -20 -80 Z" fill="#AAAAAA" />
      <path d="M 30 -80 C 30 -60, 20 -60, 20 -80 Z" fill="#AAAAAA" />
    </g>

    <!-- Melting Effect -->
    <use xlink:href="#clock-tower" transform="translate(0, 10)" opacity="0.8" />
    <use xlink:href="#clock-tower" transform="translate(0, 20)" opacity="0.6" />
    <use xlink:href="#clock-tower" transform="translate(0, 30)" opacity="0.4" />
    <use xlink:href="#clock-tower" transform="translate(0, 40)" opacity="0.2" />

    <!-- Pointillism Effect -->
    <g id="pointillism">
      <circle cx="0" cy="0" r="2" fill="#AAAAAA" />
    </g>
    <use xlink:href="#pointillism" transform="translate(5, 5)" />
    <use xlink:href="#pointillism" transform="translate(-5, 5)" />
    <use xlink:href="#pointillism" transform="translate(5, -5)" />
    <use xlink:href="#pointillism" transform="translate(-5, -5)" />
    <use xlink:href="#pointillism" transform="translate(10, 10)" />
    <use xlink:href="#pointillism" transform="translate(-10, 10)" />
    <use xlink:href="#pointillism" transform="translate(10, -10)" />
    <use xlink:href="#pointillism" transform="translate(-10, -10)" />
    <!-- Repeat pointillism pattern -->
    <use xlink:href="#pointillism" transform="translate(20, 20)" />
    <use xlink:href="#pointillism" transform="translate(-20, 20)" />
    <use xlink:href="#pointillism" transform="translate(20, -20)" />
    <use xlink:href="#pointillism" transform="translate(-20, -20)" />
    <!-- ... -->
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is No winner No winner declared

Judge's Analysis

    Failed to determine a winner: Could not determine a winner from response: I'm sorry, I can't evaluate the second image because it failed to load.

    Could you please provide it again?

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

Total Shapes

The total number of shape elements (rect, circle, ellipse, line, polygon, polyline, path) in the SVG.

Player 1
22
Player 2
7
Rectangles

The number of rectangle elements (rect) in the SVG.

Player 1
2
Player 2
2
Circles

The number of circle elements (circle) in the SVG.

Player 1
10
Player 2
3
Ellipses

The number of ellipse elements (ellipse) in the SVG.

Player 1
6
Player 2
Lines

The number of line elements (line) in the SVG.

Player 1
2
Player 2
Polygons

The number of polygon elements (polygon) in the SVG.

Player 1
Player 2
Paths

The number of path elements (path) in the SVG.

Player 1
2
Player 2
2
Groups

The number of group elements (g) in the SVG.

Player 1
4
Player 2
3

Visual Effects Metrics

Gradients

The number of gradient definitions (linearGradient, radialGradient) in the SVG.

Player 1
1
Player 2
1
Patterns

The number of pattern definitions (pattern) in the SVG.

Player 1
1
Player 2
Filters

The number of filter definitions (filter) in the SVG.

Player 1
Player 2
Masks

The number of mask definitions (mask) in the SVG.

Player 1
Player 2
Clip Paths

The number of clipping path definitions (clipPath) in the SVG.

Player 1
Player 2
Elements with Opacity

The number of elements with opacity attributes in the SVG.

Player 1
9
Player 2
4
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
13
Player 2
7

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
2
Player 2
17

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
27
Player 2
6
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
1
Player 2
1
Defs Elements

The number of elements defined within the defs element in the SVG.

Player 1
2
Player 2
Use Elements

The number of use elements (use) in the SVG.

Player 1
Player 2
16

Text Metrics

Text Elements

The number of text elements (text) in the SVG.

Player 1
Player 2

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