Back

SVG Drawing Match #63

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clock with wings flying through a surreal sky filled with floating pencils"

SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">  
  <defs>  
    <radialGradient id="skyGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">  
      <stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1"/>  
      <stop offset="100%" style="stop-color:#191970;stop-opacity:1"/>  
    </radialGradient>  
    <linearGradient id="wingGradient" x1="0%" y1="0%" x2="100%" y2="0%">  
      <stop offset="0%" style="stop-color:#FFD700;stop-opacity:1"/>  
      <stop offset="100%" style="stop-color:#FF8C00;stop-opacity:1"/>  
    </linearGradient>  
    <pattern id="clockFace" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">  
      <circle cx="5" cy="5" r="3" fill="#333"/>  
    </pattern>  
  </defs>  
  <rect width="300" height="300" fill="url(#skyGradient)"/>  
  <g transform="translate(150, 150)">  
    <circle cx="0" cy="0" r="40" fill="url(#clockFace)"/>  
    <rect x="-2.5" y="-30" width="5" height="30" fill="#000"/>  
    <rect x="-30" y="-2.5" width="30" height="5" fill="#000"/>  
    <path d="M -20 0 Q -40 -60, -80 -80" fill="none" stroke="url(#wingGradient)" stroke-width="8"/>  
    <path d="M 20 0 Q 40 -60, 80 -80" fill="none" stroke="url(#wingGradient)" stroke-width="8"/>  
  </g>  
  <g transform="translate(50, 50) rotate(30)">  
    <rect x="0" y="0" width="30" height="5" fill="#A52A2A"/>  
    <polygon points="15,5 20,10 10,10" fill="#A52A2A"/>  
  </g>  
  <g transform="translate(200, 100) rotate(-45)">  
    <rect x="0" y="0" width="30" height="5" fill="#A52A2A"/>  
    <polygon points="15,5 20,10 10,10" fill="#A52A2A"/>  
  </g>  
  <g transform="translate(100, 250) rotate(15)">  
    <rect x="0" y="0" width="30" height="5" fill="#A52A2A"/>  
    <polygon points="15,5 20,10 10,10" fill="#A52A2A"/>  
  </g>  
  <g transform="translate(250, 200) rotate(-30)">  
    <rect x="0" y="0" width="30" height="5" fill="#A52A2A"/>  
    <polygon points="15,5 20,10 10,10" fill="#A52A2A"/>  
  </g>  
  <circle cx="80" cy="80" r="5" fill="#FFD700"/>  
  <circle cx="220" cy="120" r="5" fill="#FFD700"/>  
  <circle cx="150" cy="250" r="5" fill="#FFD700"/>  
  <circle cx="250" cy="50" r="5" fill="#FFD700"/>  
</svg>
SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Sky Gradient -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
  <linearGradient id="skyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
    <stop offset="0%" stop-color="#87CEEB" stop-opacity="1"/>
    <stop offset="100%" stop-color="#4682B4" stop-opacity="1"/>
  </linearGradient>

  <!-- Floating Pencils -->
  <g>
    <rect x="50" y="50" width="10" height="50" fill="#F7DC6F" rx="5" transform="rotate(45 55 75)"/>
    <rect x="100" y="120" width="10" height="50" fill="#F7DC6F" rx="5" transform="rotate(-30 105 145)"/>
    <rect x="200" y="80" width="10" height="50" fill="#F7DC6F" rx="5" transform="rotate(15 205 105)"/>
    <rect x="250" y="180" width="10" height="50" fill="#F7DC6F" rx="5" transform="rotate(-45 255 205)"/>
  </g>

  <!-- Clock with Wings -->
  <g transform="translate(120, 120)">
    <!-- Clock Body -->
    <circle cx="0" cy="0" r="40" fill="#452B1F" stroke="#654321" stroke-width="2"/>
    <!-- Clock Hands -->
    <line x1="0" y1="0" x2="20" y2="-25" stroke="#FF69B4" stroke-width="2"/>
    <line x1="0" y1="0" x2="30" y2="10" stroke="#33CC33" stroke-width="2"/>
    <!-- Wings -->
    <path d="M-20 -20 L-40 0 L-20 20 Z" fill="#C0C0C0" stroke="#808080" stroke-width="1" transform="rotate(45)"/>
    <path d="M20 -20 L40 0 L20 20 Z" fill="#C0C0C0" stroke="#808080" stroke-width="1" transform="rotate(-45)"/>
  </g>

  <!-- Movement Lines -->
  <g stroke="#808080" stroke-width="1">
    <path d="M120 120 L100 100" fill="none"/>
    <path d="M120 120 L140 140" fill="none"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek V3 Player 1

Judge's Analysis

    Player 1's image creatively integrates a clock with wing-like elements and successfully conveys a surreal atmosphere with abstract shapes resembling pencils.

    The vibrant color scheme enhances the visual appeal and adheres well to the prompt.

    Player 2's image, while technically clear, lacks the imaginative integration of wings and the surreal quality present in Player 1's submission.

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

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

Player 1
7
Player 2
5
Circles

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

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

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

Player 1
4
Player 2
Paths

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

Player 1
2
Player 2
4
Groups

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

Player 1
5
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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

Complexity Metrics

Path Commands

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

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