Back

SVG Drawing Match #1227

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Clockwork hummingbird in mid-flight, gears visible, in minimalist steampunk style"

SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="bodyGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#FFD700" />
      <stop offset="100%" stop-color="#B8860B" />
    </radialGradient>
    <linearGradient id="wingGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#8B4513" />
      <stop offset="100%" stop-color="#A0522D" />
    </linearGradient>
    <pattern id="gearPattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <circle cx="10" cy="10" r="8" fill="#808080" />
      <circle cx="10" cy="10" r="4" fill="#A9A9A9" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="#1E1E1E" />
  <g transform="translate(150, 150)">
    <path d="M0,-50 C10,-60 20,-65 30,-60 C40,-55 50,-50 60,-55 C70,-60 80,-65 90,-60 C100,-55 110,-50 120,-55 C130,-60 140,-65 150,-60 C160,-55 170,-50 180,-55 C190,-60 200,-65 210,-60 C220,-55 230,-50 240,-55 C250,-60 260,-65 270,-60 C280,-55 290,-50 300,-60" fill="none" stroke="url(#wingGradient)" stroke-width="5" />
    <circle cx="0" cy="0" r="30" fill="url(#bodyGradient)" />
    <g transform="rotate(-30)">
      <circle cx="40" cy="0" r="10" fill="url(#gearPattern)" />
      <circle cx="-40" cy="0" r="10" fill="url(#gearPattern)" />
    </g>
    <path d="M0,-30 L-10,-40 L10,-40 Z" fill="#FF0000" />
    <line x1="0" y1="30" x2="0" y2="50" stroke="#FFD700" stroke-width="3" />
  </g>
</svg>
SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="wingGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#c9a0dc;stop-opacity:0.8"/>
      <stop offset="100%" style="stop-color:#8a2be2;stop-opacity:0.4"/>
    </linearGradient>
    <pattern id="gearPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="3" fill="#b87333"/>
      <path d="M10,4 L12,8 L8,8 Z" fill="#cd7f32"/>
    </pattern>
  </defs>
  
  <!-- Body -->
  <path d="M150,150 C180,140 200,160 220,150 C240,140 260,160 240,180 C220,200 180,190 150,180 Z" 
        fill="#b87333" stroke="#8b4513" stroke-width="2"/>
  
  <!-- Main Wing -->
  <path d="M150,150 C200,100 250,80 280,120 C290,140 260,160 220,150 C180,140 160,160 150,150" 
        fill="url(#wingGrad)" stroke="#4a4a4a" stroke-width="1.5"/>
  
  <!-- Gears -->
  <circle cx="160" cy="160" r="15" fill="url(#gearPattern)" stroke="#8b4513"/>
  <circle cx="185" cy="155" r="12" fill="url(#gearPattern)" stroke="#8b4513"/>
  <circle cx="200" cy="165" r="10" fill="url(#gearPattern)" stroke="#8b4513"/>
  
  <!-- Tail -->
  <path d="M150,180 C140,200 160,220 180,210 C200,200 170,190 150,180" 
        fill="#cd7f32" stroke="#8b4513" stroke-width="1.5"/>
  
  <!-- Head and Beak -->
  <ellipse cx="140" cy="145" rx="12" ry="8" fill="#b87333" stroke="#8b4513"/>
  <path d="M128,145 L110,142 L128,148" fill="#cd7f32" stroke="#8b4513" stroke-width="1"/>
  
  <!-- Eye -->
  <circle cx="135" cy="143" r="3" fill="#4a4a4a"/>
  <circle cx="134" cy="142" r="1" fill="white"/>
  
  <!-- Decorative Gears -->
  <g transform="rotate(-20,150,150)">
    <path d="M140,130 L145,125 L150,130 L145,135 Z" fill="#b87333" stroke="#8b4513"/>
    <circle cx="145" cy="130" r="2" fill="#4a4a4a"/>
  </g>
  
  <!-- Motion Lines -->
  <g stroke="#4a4a4a" stroke-width="0.5" opacity="0.6">
    <line x1="280" y1="120" x2="290" y2="115"/>
    <line x1="275" y1="130" x2="285" y2="135"/>
    <line x1="270" y1="125" x2="280" y2="128"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 2

Judge's Analysis

    Player 2's submission better captures the essence of a 'clockwork hummingbird in mid-flight' with visible gears and a more defined bird shape, adhering more closely to the minimalist steampunk style.

    The technical execution and visual appeal are stronger, with a clearer representation of movement and mechanical elements compared to Player 1's abstract approach.

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

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

Player 1
1
Player 2
Circles

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

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

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

Player 1
2
Player 2
2

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
5

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
1

Complexity Metrics

Path Commands

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

Player 1
15
Player 2
24
Max Group Nesting

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

Player 1
1
Player 2
Defs Elements

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

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