Back

SVG Drawing Match #1293

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A single melting clock on a tree branch, in abstract geometric style"

SVG by Qwen-2.5-32B
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="clockGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ff6f69"/>
      <stop offset="100%" stop-color="#fab1a0"/>
    </linearGradient>
    <linearGradient id="branchGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#8dc63f"/>
      <stop offset="100%" stop-color="#558b2f"/>
    </linearGradient>
    <pattern id="meltingPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="3" fill="#ff6f69"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="#e0e0e0"/>
  <g>
    <path d="M150,50 Q100,100 150,150 Q200,100 150,50" fill="url(#clockGradient)" stroke="#ff6f69" stroke-width="4"/>
    <path d="M150,150 Q130,170 150,190 Q170,170 150,150" fill="url(#meltingPattern)" stroke="#ff6f69" stroke-width="4"/>
  </g>
  <path d="M100,250 Q150,275 200,250" fill="none" stroke="url(#branchGradient)" stroke-width="10"/>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background with subtle gradient -->
  <rect width="300" height="300" fill="url(#bgGradient)"/>
  
  <!-- Tree branch -->
  <path d="M100,100 Q150,80 200,100 L220,120 L180,140 Z" 
        fill="url(#branchGradient)" 
        stroke="#333" 
        stroke-width="2"/>
  
  <!-- Melting clock -->
  <g transform="translate(150,150)">
    <!-- Clock face -->
    <rect x="-50" y="-50" width="100" height="100" rx="20" 
          fill="url(#clockGradient)" 
          stroke="#fff" 
          stroke-width="4"/>
    
    <!-- Melting effect -->
    <path d="M0,50 Q-20,0 -40,-20 -20,-40 0,-30 20,-40 40,-20 20,0 0,50"
          fill="url(#meltGradient)"/>
    
    <!-- Clock numbers (abstract) -->
    <path d="M-30,0 L-40,-10 L-20,-20 L-10,-30 L0,-40 L10,-30 L20,-20 L40,-10 L30,0 L20,10 L10,20 L0,30 L-10,20 L-20,10 L-30,0 Z"
          fill="#fff"/>
    
    <!-- Dripping effect -->
    <ellipse cx="0" cy="60" rx="15" ry="8" fill="url(#meltGradient)"/>
  </g>

  <!-- Leaf shapes -->
  <path d="M220,120 L230,130 L200,140 Z" 
        fill="#4CAF50" 
        transform="rotate(30 220,120)"/>
  <path d="M180,140 L190,150 L160,140 Z" 
        fill="#45a049" 
        transform="rotate(-30 180,140)"/>

  <!-- Gradient definitions -->
  <defs>
    <linearGradient id="bgGradient" x1="0" y1="0" x2="300" y2="300" gradientUnits="userSpaceOnUse">
      <stop stop-color="#ffd700" offset="0"/>
      <stop stop-color="#ffa500" offset="1"/>
    </linearGradient>
    
    <linearGradient id="branchGradient" x1="0" y1="0" x2="300" y2="300" gradientUnits="userSpaceOnUse">
      <stop stop-color="#8b4513" offset="0"/>
      <stop stop-color="#4a2b0d" offset="1"/>
    </linearGradient>
    
    <radialGradient id="clockGradient" cx="0" cy="0" r="50" gradientUnits="userSpaceOnUse">
      <stop stop-color="#9c27b0" offset="0"/>
      <stop stop-color="#e91e63" offset="1"/>
    </radialGradient>
    
    <radialGradient id="meltGradient" cx="0" cy="0" r="50" gradientUnits="userSpaceOnUse">
      <stop stop-color="#ff9800" offset="0"/>
      <stop stop-color="#f57c00" offset="1"/>
    </radialGradient>
  </defs>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Llama-70B Player 2

Judge's Analysis

    Player 2's submission is visually more engaging with its vibrant color palette and effective use of geometric shapes, which adhere better to the abstract geometric style.

    The composition is dynamic and the elements are well-balanced, successfully conveying the concept of a melting clock on a tree branch.

    Player 1's image, while minimalistic, lacks the complexity and creativity needed to fully express 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

Total Shapes

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

Player 1
5
Player 2
8
Rectangles

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

Player 1
1
Player 2
2
Circles

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

Player 1
1
Player 2
Ellipses

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

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

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

Player 1
1
Player 2
1

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
12

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
3

Complexity Metrics

Path Commands

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

Player 1
8
Player 2
31
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
3
Player 2
4
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