Back

SVG Drawing Match #1041

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A dreamlike clock with melting numbers, floating in a starlit sky"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Starry background -->
  <defs>
    <radialGradient id="glow" fx="50%" fy="50%" r="1" spreadMethod="repeat">
      <stop offset="0" stop-color="#fff" stop-opacity="0.9"/>
      <stop offset="0.5" stop-color="#fff" stop-opacity="0.2"/>
      <stop offset="1" stop-color="transparent"/>
    </radialGradient>
    <linearGradient id="clockGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#1a1a5e;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#16213e;stop-opacity:1" />
    </linearGradient>
  </defs>

  <!-- Background with animated stars -->
  <rect width="300" height="300" fill="url(#clockGrad)" />
  <g id="stars">
    <circle cx="50" cy="50" r="1" fill="#fff" opacity="0.5">
      <animate attributeName="opacity" from="0.5" to="1" back="0.5" dur="2s" repeatCount="indefinite" />
    </circle>
    <!-- More stars (repeated for effect) -->
    <circle cx="150" cy="80" r="1" fill="#fff" opacity="0.5">
      <animate attributeName="opacity" from="0.5" to="1" back="0.5" dur="3s" repeatCount="indefinite" />
    </circle>
    <circle cx="250" cy="30" r="1" fill="#fff" opacity="0.5">
      <animate attributeName="opacity" from="0.5" to="1" back="0.5" dur="4s" repeatCount="indefinite" />
    </circle>
  </g>

  <!-- Clock face -->
  <circle cx="150" cy="150" r="120" fill="url(#clockGrad)" stroke="#fff" stroke-width="2" opacity="0.8" />
  <circle cx="150" cy="150" r="110" fill="none" stroke="#fff" stroke-width="1" opacity="0.5">
    <animate attributeName="r" from="110" to="130" dur="4s" repeatCount="indefinite" />
    <animate attributeName="opacity" from="0.5" to="0.8" dur="4s" repeatCount="indefinite" />
  </circle>

  <!-- Melting numbers -->
  <g id="numbers">
    <path d="M150,100 L170,90 Q180,80 190,90 L210,100 L200,110 Q190,120 180,110 L170,100 L150,90 Q140,80 130,90 L110,100 L120,110 Q130,120 140,110 L150,100" fill="#fff" opacity="0.7">
      <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="30s" repeatCount="indefinite" />
    </path>
    <text x="150" y="150" text-anchor="middle" font-size="40" font-family="Arial" fill="#fff" opacity="0.9>
      12
    </text>
  </g>

  <!-- Floating clock hands -->
  <line x1="150" y1="150" x2="150" y2="100" stroke="#fff" stroke-width="2" opacity="0.8">
    <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="60s" repeatCount="indefinite" />
  </line>
  <line x1="150" y1="150" x2="200" y2="150" stroke="#fff" stroke-width="1" opacity="0.6">
    <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="30s" repeatCount="indefinite" />
  </line>

  <!-- Center glow -->
  <circle cx="150" cy="150" r="10" fill="url(#glow)" />
  <circle cx="150" cy="150" r="5" fill="#fff" opacity="0.9">
    <animate attributeName="r" from="5" to="10" back="5" dur="2s" repeatCount="indefinite" />
  </animate>
</svg>
SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color: #00264d; stop-opacity:1" />
      <stop offset="100%" style="stop-color: #004a99; stop-opacity:1" />
    </linearGradient>
    <radialGradient id="clockFaceGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color: #f5b7b1; stop-opacity:1" />
      <stop offset="100%" style="stop-color: #f9ebe5; stop-opacity:1" />
    </radialGradient>
    <pattern id="starPattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <circle cx="2" cy="2" r="1" fill="#fff" opacity="0.5"/>
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="url(#skyGradient)" />
  <g transform="translate(150, 150)">
    <circle cx="0" cy="0" r="100" fill="url(#clockFaceGradient)" />
    <g transform="rotate(-90)">
      <g transform="rotate(30)">
        <text x="-10" y="10" font-size="20" fill="rgba(0,0,0,0.7)" font-family="Arial, sans-serif">1</text>
      </g>
      <g transform="rotate(60)">
        <text x="-10" y="10" font-size="20" fill="rgba(0,0,0,0.7)" font-family="Arial, sans-serif">2</text>
      </g>
      <g transform="rotate(90)">
        <text x="-10" y="10" font-size="20" fill="rgba(0,0,0,0.7)" font-family="Arial, sans-serif">3</text>
      </g>
      <g transform="rotate(120)">
        <text x="-10" y="10" font-size="20" fill="rgba(0,0,0,0.7)" font-family="Arial, sans-serif">4</text>
      </g>
      <g transform="rotate(150)">
        <text x="-10" y="10" font-size="20" fill="rgba(0,0,0,0.7)" font-family="Arial, sans-serif">5</text>
      </g>
      <g transform="rotate(180)">
        <text x="-10" y="10" font-size="20" fill="rgba(0,0,0,0.7)" font-family="Arial, sans-serif">6</text>
      </g>
      <g transform="rotate(210)">
        <text x="-10" y="10" font-size="20" fill="rgba(0,0,0,0.7)" font-family="Arial, sans-serif">7</text>
      </g>
      <g transform="rotate(240)">
        <text x="-10" y="10" font-size="20" fill="rgba(0,0,0,0.7)" font-family="Arial, sans-serif">8</text>
      </g>
      <g transform="rotate(270)">
        <text x="-10" y="10" font-size="20" fill="rgba(0,0,0,0.7)" font-family="Arial, sans-serif">9</text>
      </g>
      <g transform="rotate(300)">
        <text x="-10" y="10" font-size="20" fill="rgba(0,0,0,0.7)" font-family="Arial, sans-serif">10</text>
      </g>
      <g transform="rotate(330)">
        <text x="-10" y="10" font-size="20" fill="rgba(0,0,0,0.7)" font-family="Arial, sans-serif">11</text>
      </g>
      <g transform="rotate(0)">
        <text x="-10" y="10" font-size="20" fill="rgba(0,0,0,0.7)" font-family="Arial, sans-serif">12</text>
      </g>
    </g>
    <g transform="translate(-100, -100)">
      <circle cx="100" cy="100" r="20" fill="url(#starPattern)" />
    </g>
    <g transform="translate(100, -100)">
      <circle cx="100" cy="100" r="20" fill="url(#starPattern)" />
    </g>
    <g transform="translate(-100, 100)">
      <circle cx="100" cy="100" r="20" fill="url(#starPattern)" />
    </g>
    <g transform="translate(100, 100)">
      <circle cx="100" cy="100" r="20" fill="url(#starPattern)" />
    </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Qwen-2.5-32B Player 2

Judge's Analysis

    Player 2's submission features a clock that effectively captures a dreamlike quality with its abstract and surreal elements.

    The use of a gradient background simulating a starlit sky adds depth and adheres to the prompt.

    Player 1's image could not be evaluated due to a loading error.

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
Player 2
7
Rectangles

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

Player 1
Player 2
1
Circles

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

Player 1
Player 2
6
Ellipses

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

Player 1
Player 2
Lines

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

Player 1
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
Player 2
Groups

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

Player 1
Player 2
18

Visual Effects Metrics

Gradients

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

Player 1
Player 2
2
Patterns

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

Player 1
Player 2
1
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
Player 2
1
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
Player 2
2

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
Player 2
18

Complexity Metrics

Path Commands

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

Player 1
Player 2
Max Group Nesting

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

Player 1
Player 2
2
Defs Elements

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

Player 1
Player 2
3
Use Elements

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

Player 1
Player 2

Text Metrics

Text Elements

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

Player 1
Player 2
12

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