Back

SVG Drawing Match #1127

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A steampunk dragonfly wearing a tiny top hat, wings made of clock gears"

SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Gradient definitions -->
  <defs>
    <linearGradient id="bronze" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0" stop-color="#FF9900" />
      <stop offset="1" stop-color="#996600" />
    </linearGradient>
    <linearGradient id="copper" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0" stop-color="#FFC080" />
      <stop offset="1" stop-color="#FF9900" />
    </linearGradient>
    <radialGradient id="eye" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0" stop-color="#3300CC" />
      <stop offset="1" stop-color="#000066" />
    </radialGradient>
  </defs>

  <!-- Body and head -->
  <path d="M 120 100 C 130 80 140 60 150 50 C 160 60 170 80 180 100 C 175 120 170 140 165 160 C 155 140 145 120 135 100 Z"
        fill="#996600" stroke="#663300" stroke-width="2" />
  <circle cx="150" cy="60" r="15" fill="#3300CC" stroke="#000066" stroke-width="2" />
  <circle cx="165" cy="60" r="5" fill="url(#eye)" />
  <circle cx="135" cy="60" r="5" fill="url(#eye)" />

  <!-- Top hat -->
  <rect x="140" y="40" width="20" height="15" fill="#000000" stroke="#FFFFFF" stroke-width="1" />
  <rect x="140" y="40" width="20" height="2" fill="#FFFFFF" />
  <rect x="140" y="53" width="20" height="2" fill="#FFFFFF" />
  <path d="M 140 55 C 140 58 145 60 150 60 C 155 60 160 58 160 55 Z" fill="#000000" stroke="#FFFFFF" stroke-width="1" />

  <!-- Clock gear wings -->
  <g transform="translate(150, 100)">
    <path d="M -20 -20 C -20 -30 -10 -40 0 -40 C 10 -40 20 -30 20 -20 C 20 -10 10 0 0 0 C -10 0 -20 -10 -20 -20 Z"
          fill="url(#bronze)" stroke="#996600" stroke-width="2" />
    <path d="M -20 20 C -20 30 -10 40 0 40 C 10 40 20 30 20 20 C 20 10 10 0 0 0 C -10 0 -20 10 -20 20 Z"
          fill="url(#bronze)" stroke="#996600" stroke-width="2" />
    <path d="M -30 -10 C -30 -20 -20 -30 -10 -30 C 0 -30 10 -20 10 -10 C 10 0 0 10 -10 10 C -20 10 -30 0 -30 -10 Z"
          fill="url(#copper)" stroke="#FF9900" stroke-width="2" />
    <path d="M 30 10 C 30 20 20 30 10 30 C 0 30 -10 20 -10 10 C -10 0 0 -10 10 -10 C 20 -10 30 0 30 10 Z"
          fill="url(#copper)" stroke="#FF9900" stroke-width="2" />
  </g>

  <!-- Legs -->
  <path d="M 120 150 C 130 140 140 130 150 120 C 160 130 170 140 180 150 Z"
        fill="#996600" stroke="#663300" stroke-width="2" />
  <path d="M 180 150 C 190 140 200 130 210 120 C 220 130 230 140 240 150 Z"
        fill="#996600" stroke="#663300" stroke-width="2" />
  <path d="M 120 150 C 110 140 100 130 90 120 C 80 130 70 140 60 150 Z"
        fill="#996600" stroke="#663300" stroke-width="2" />
</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="metallic" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#b8b8b8"/>
      <stop offset="50%" style="stop-color:#666"/>
      <stop offset="100%" style="stop-color:#999"/>
    </linearGradient>
    <radialGradient id="copper" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#f7a355"/>
      <stop offset="100%" style="stop-color:#8b4513"/>
    </radialGradient>
  </defs>
  
  <!-- Body -->
  <path d="M120,150 Q150,140 180,150 T220,160 Q180,170 150,160 T120,150" fill="url(#metallic)" stroke="#333" stroke-width="2"/>
  
  <!-- Wings - Gears -->
  <g class="left-wings">
    <circle cx="130" cy="140" r="30" fill="none" stroke="#666" stroke-width="2"/>
    <path d="M130,110 L130,170 M100,140 L160,140" stroke="#666" stroke-width="4"/>
    <circle cx="130" cy="140" r="5" fill="url(#copper)"/>
    <circle cx="100" cy="130" r="20" fill="none" stroke="#666" stroke-width="2"/>
    <path d="M100,110 L100,150 M80,130 L120,130" stroke="#666" stroke-width="3"/>
  </g>
  
  <g class="right-wings" transform="translate(170,140) scale(-1,1)">
    <circle cx="130" cy="140" r="30" fill="none" stroke="#666" stroke-width="2"/>
    <path d="M130,110 L130,170 M100,140 L160,140" stroke="#666" stroke-width="4"/>
    <circle cx="130" cy="140" r="5" fill="url(#copper)"/>
    <circle cx="100" cy="130" r="20" fill="none" stroke="#666" stroke-width="2"/>
    <path d="M100,110 L100,150 M80,130 L120,130" stroke="#666" stroke-width="3"/>
  </g>
  
  <!-- Head -->
  <circle cx="220" cy="160" r="15" fill="url(#copper)" stroke="#333"/>
  
  <!-- Top Hat -->
  <path d="M210,145 h20 v-20 h-20 z M205,145 h30" fill="#111" stroke="#333"/>
  <ellipse cx="220" cy="145" rx="15" ry="5" fill="#111" stroke="#333"/>
  
  <!-- Eyes -->
  <circle cx="225" cy="155" r="5" fill="#6a9113"/>
  <circle cx="215" cy="155" r="5" fill="#6a9113"/>
  
  <!-- Legs -->
  <path d="M140,155 Q130,170 120,165 M160,155 Q150,170 140,165 M170,155 Q180,170 190,165" 
        stroke="#666" stroke-width="2" fill="none"/>
  
  <!-- Decorative gears -->
  <g class="small-gears">
    <circle cx="110" cy="160" r="8" fill="url(#copper)" stroke="#333"/>
    <path d="M110,152 L110,168 M102,160 L118,160" stroke="#333" stroke-width="2"/>
    <circle cx="190" cy="160" r="8" fill="url(#copper)" stroke="#333"/>
    <path d="M190,152 L190,168 M182,160 L198,160" stroke="#333" stroke-width="2"/>
  </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 image captures the steampunk dragonfly concept more effectively with the inclusion of clock gears as wings and a clear depiction of a top hat.

    The technical quality and creativity are higher, as the image incorporates distinct steampunk elements in a visually appealing manner.

    Player 1's submission lacks clarity in representing the dragonfly and its steampunk features.

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

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

Player 1
3
Player 2
Circles

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

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

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

Player 1
1
Player 2
3

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
2
Patterns

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

Player 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
11
Player 2
17

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
4

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