Back

SVG Drawing Match #431

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Melting clock tree under a starry, cheese moon sky"

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moonGlow" cx="70%" cy="30%" r="60%">
      <stop offset="0%" stop-color="#fff5c2"/>
      <stop offset="80%" stop-color="#ffd84d"/>
      <stop offset="100%" stop-color="#ffc61a"/>
    </radialGradient>
    <pattern id="stars" width="30" height="30" patternUnits="userSpaceOnUse">
      <circle cx="15" cy="15" r="0.8" fill="white"/>
      <circle cx="5" cy="5" r="0.5" fill="white"/>
      <circle cx="25" cy="25" r="0.6" fill="white"/>
    </pattern>
  </defs>
  
  <rect width="300" height="300" fill="#1a1a3d"/>
  <rect width="300" height="300" fill="url(#stars)"/>
  
  <circle cx="230" cy="70" r="40" fill="url(#moonGlow)"/>
  <circle cx="215" cy="60" r="5" fill="#d9a95f"/>
  <circle cx="240" cy="80" r="7" fill="#d9a95f"/>
  <circle cx="235" cy="55" r="4" fill="#d9a95f"/>
  
  <path d="M 150 280 Q 120 270 100 220 T 80 150 Q 70 100 90 80 T 130 50" 
        fill="none" stroke="#4d3319" stroke-width="20"/>
  
  <g transform="translate(90,80) rotate(-15)">
    <path d="M 0 0 Q 30 -20 60 0 T 120 0" 
          fill="none" stroke="#c2c2d6" stroke-width="8"/>
    <circle cx="60" cy="0" r="25" fill="#e6e6ff" stroke="#8585ad" stroke-width="3"/>
    <path d="M 60 0 L 60 -15 M 60 0 L 75 0" 
          stroke="#8585ad" stroke-width="3"/>
  </g>
  
  <g transform="translate(130,150) rotate(20)">
    <path d="M 0 0 Q 30 20 60 0 T 120 0" 
          fill="none" stroke="#c2c2d6" stroke-width="8"/>
    <circle cx="60" cy="0" r="30" fill="#e6e6ff" stroke="#8585ad" stroke-width="3" 
            transform="scale(1, 0.7) translate(0, 15)"/>
    <path d="M 60 0 L 60 -18 M 60 0 L 80 0" 
          stroke="#8585ad" stroke-width="3"/>
  </g>
  
  <g transform="translate(70,200) rotate(-30)">
    <path d="M 0 0 Q 30 -20 60 0 T 120 0" 
          fill="none" stroke="#c2c2d6" stroke-width="8"/>
    <circle cx="60" cy="0" r="28" fill="#e6e6ff" stroke="#8585ad" stroke-width="3" 
            transform="scale(0.8, 1.2) translate(10, -5)"/>
    <path d="M 60 0 L 60 -20 M 60 0 L 70 0" 
          stroke="#8585ad" stroke-width="3"/>
  </g>
  
  <circle cx="230" cy="70" r="40" fill="url(#moonGlow)" opacity="0.3"/>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Starry sky -->
  <rect width="300" height="300" fill="navy" />
  <circle cx="150" cy="150" r="120" fill="yellow" />
  <circle cx="180" cy="70" r="3" fill="white" />
  <circle cx="70" cy="200" r="2" fill="white" />
  <circle cx="230" cy="230" r="1.5" fill="white" />
  <circle cx="130" cy="100" r="2.5" fill="white" />
  <circle cx="40" cy="140" r="2" fill="white" />

  <!-- Cheese moon -->
  <circle cx="50" cy="50" r="40" fill="#FFE4B5" />

  <!-- Tree -->
  <rect x="145" y="150" width="10" height="100" fill="saddlebrown" />
  <circle cx="150" cy="150" r="40" fill="forestgreen" />
  
  <!-- Melting clock -->
  <ellipse cx="160" cy="190" rx="20" ry="10" fill="silver" transform="skewX(30)" />
  <ellipse cx="160" cy="190" rx="20" ry="10" fill="silver" transform="skewX(-30)" />
  <rect x="152" y="180" width="16" height="20" fill="gray" />
  <circle cx="160" cy="200" r="5" fill="black" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 1

Judge's Analysis

    Player 1's image creatively integrates the melting clocks on a branch, directly addressing the prompt.

    The starry background and cheese-like moon enhance the surreal atmosphere.

    Player 2's image, while colorful, lacks clarity in representing the melting clocks and the cheese moon, making Player 1's submission more aligned with the prompt and visually appealing.

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

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

Player 1
2
Player 2
3
Circles

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

Player 1
11
Player 2
9
Ellipses

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

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

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

Player 1
3
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
10
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
9

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

Complexity Metrics

Path Commands

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

Player 1
26
Player 2
Max Group Nesting

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

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

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