Back

SVG Drawing Match #40

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Clockwork dragonfly with gears for wings"

SVG by o1-mini (2024-09-12)
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="metallic" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#c0c0c0; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#808080; stop-opacity:1" />
    </radialGradient>
    <radialGradient id="gear-highlight" cx="30%" cy="30%" r="50%">
      <stop offset="0%" style="stop-color:#ffffff; stop-opacity:0.8" />
      <stop offset="100%" style="stop-color:#c0c0c0; stop-opacity:0" />
    </radialGradient>
    <linearGradient id="body-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#4e342e; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#1b0000; stop-opacity:1" />
    </linearGradient>
  </defs>
  
  <!-- Body -->
  <g>
    <ellipse cx="150" cy="150" rx="10" ry="50" fill="url(#body-gradient)" />
    <circle cx="150" cy="100" r="12" fill="#3e2723" />
    <circle cx="150" cy="200" r="12" fill="#3e2723" />
    <path d="M140,100 C130,120 130,180 140,200" stroke="#5d4037" stroke-width="4" fill="none" />
    <path d="M160,100 C170,120 170,180 160,200" stroke="#5d4037" stroke-width="4" fill="none" />
    <!-- Antennae -->
    <line x1="150" y1="90" x2="130" y2="70" stroke="#5d4037" stroke-width="2" />
    <line x1="150" y1="90" x2="170" y2="70" stroke="#5d4037" stroke-width="2" />
  </g>
  
  <!-- Left Wing - Gear -->
  <g transform="translate(80,120) rotate(-30)">
    <circle cx="0" cy="0" r="40" fill="url(#metallic)" stroke="#666" stroke-width="2"/>
    <circle cx="0" cy="0" r="35" fill="url(#gear-highlight)" />
    <!-- Gear Teeth -->
    <g stroke="#666" stroke-width="2">
      <path d="M35,0 L40,0" />
      <path d="M35,0 L38,5" />
      <path d="M0,35 L0,40" />
      <path d="M0,35 L-5,38" />
      <path d="M-35,0 L-40,0" />
      <path d="M-35,0 L-38,-5" />
      <path d="M0,-35 L0,-40" />
      <path d="M0,-35 L5,-38" />
      <path d="M24.75,24.75 L28.28,28.28" />
      <path d="M24.75,-24.75 L28.28,-28.28" />
      <path d="M-24.75,24.75 L-28.28,28.28" />
      <path d="M-24.75,-24.75 L-28.28,-28.28" />
    </g>
  </g>
  
  <!-- Right Wing - Gear -->
  <g transform="translate(220,120) rotate(30)">
    <circle cx="0" cy="0" r="40" fill="url(#metallic)" stroke="#666" stroke-width="2"/>
    <circle cx="0" cy="0" r="35" fill="url(#gear-highlight)" />
    <!-- Gear Teeth -->
    <g stroke="#666" stroke-width="2">
      <path d="M35,0 L40,0" />
      <path d="M35,0 L38,5" />
      <path d="M0,35 L0,40" />
      <path d="M0,35 L-5,38" />
      <path d="M-35,0 L-40,0" />
      <path d="M-35,0 L-38,-5" />
      <path d="M0,-35 L0,-40" />
      <path d="M0,-35 L5,-38" />
      <path d="M24.75,24.75 L28.28,28.28" />
      <path d="M24.75,-24.75 L28.28,-28.28" />
      <path d="M-24.75,24.75 L-28.28,28.28" />
      <path d="M-24.75,-24.75 L-28.28,-28.28" />
    </g>
  </g>
  
  <!-- Highlight Lines -->
  <g stroke="#ffffff" stroke-opacity="0.3">
    <line x1="150" y1="150" x2="80" y2="120" />
    <line x1="150" y1="150" x2="220" y2="120" />
  </g>
  
  <!-- Decorative Elements -->
  <g>
    <circle cx="150" cy="150" r="6" fill="#5d4037" stroke="#3e2723" stroke-width="2"/>
    <circle cx="150" cy="150" r="4" fill="#3e2723"/>
  </g>
  
  <!-- Background -->
  <rect width="300" height="300" fill="#eceff1" />
</svg>
SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#212121" rx="20" />
  
  <!-- Dragonfly Body -->
  <g transform="translate(150, 150)">
    <ellipse cx="0" cy="0" rx="40" ry="60" fill="#FFC107" />
    <ellipse cx="0" cy="0" rx="35" ry="55" fill="#FFA07A" />
    <ellipse cx="0" cy="0" rx="30" ry="50" fill="#FF9900" />
  </g>
  
  <!-- Gears for Wings -->
  <g transform="translate(150, 150) scale(0.8)">
    <g transform="rotate(-30)">
      <circle cx="-60" cy="0" r="20" fill="#AAAAAA" />
      <circle cx="-60" cy="0" r="15" fill="#666666" />
      <circle cx="-60" cy="0" r="10" fill="#333333" />
      <path d="M-60 0 L-70 10 L-70 -10 Z" fill="#AAAAAA" />
    </g>
    <g transform="rotate(30)">
      <circle cx="60" cy="0" r="20" fill="#AAAAAA" />
      <circle cx="60" cy="0" r="15" fill="#666666" />
      <circle cx="60" cy="0" r="10" fill="#333333" />
      <path d="M60 0 L70 10 L70 -10 Z" fill="#AAAAAA" />
    </g>
    <g transform="rotate(-60)">
      <circle cx="-80" cy="20" r="15" fill="#AAAAAA" />
      <circle cx="-80" cy="20" r="10" fill="#666666" />
      <circle cx="-80" cy="20" r="5" fill="#333333" />
      <path d="M-80 20 L-90 30 L-90 10 Z" fill="#AAAAAA" />
    </g>
    <g transform="rotate(60)">
      <circle cx="80" cy="20" r="15" fill="#AAAAAA" />
      <circle cx="80" cy="20" r="10" fill="#666666" />
      <circle cx="80" cy="20" r="5" fill="#333333" />
      <path d="M80 20 L90 30 L90 10 Z" fill="#AAAAAA" />
    </g>
  </g>
  
  <!-- Eyes -->
  <g transform="translate(150, 130)">
    <circle cx="-10" cy="0" r="5" fill="#FFFFFF" />
    <circle cx="10" cy="0" r="5" fill="#FFFFFF" />
    <circle cx="-10" cy="0" r="2" fill="#000000" />
    <circle cx="10" cy="0" r="2" fill="#000000" />
  </g>
  
  <!-- Head Details -->
  <g transform="translate(150, 120)">
    <path d="M-20 0 L20 0 L20 10 L-20 10 Z" fill="#FFC107" />
    <path d="M-15 5 L15 5 L15 10 L-15 10 Z" fill="#FFA07A" />
  </g>
  
  <!-- Antennae -->
  <g transform="translate(150, 110)">
    <path d="M-10 0 L-20 10" stroke="#FFC107" stroke-width="2" />
    <path d="M10 0 L20 10" stroke="#FFC107" stroke-width="2" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.0 70B (8192) Player 2

Judge's Analysis

    Player 2's submission captures the theme of a 'clockwork dragonfly with gears for wings' more effectively through the use of visible gears and a mechanical aesthetic.

    The design is more cohesive and the visual appeal is enhanced by the contrast between the black background and the vibrant orange.

    Player 1's image lacks clarity in representing 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
40
Player 2
28
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
8
Player 2
16
Ellipses

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

Player 1
1
Player 2
3
Lines

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

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

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

Player 1
7
Player 2
9

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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

Complexity Metrics

Path Commands

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

Player 1
52
Player 2
30
Max Group Nesting

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

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