Back

SVG Drawing Match #711

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Butterfly made of clock gears"

SVG by Qwen-2.5-32B
<svg width="300" height="300" viewBox="0 0 300 300" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255,165,0);stop-opacity:1" />
</linearGradient>
<linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:rgb(0,0,255);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(128,0,128);stop-opacity:1" />
</linearGradient>
</defs>
<g stroke="#000" stroke-width="2">
<!-- Left Wing -->
<path d="M150 100 q100 100 0 200" fill="url(#grad1)" />
<path d="M150 100 q100 100 0 200" stroke="#000" fill="none" />
<!-- Right Wing -->
<path d="M150 100 q-100 100 0 200" fill="url(#grad2)" />
<path d="M150 100 q-100 100 0 200" stroke="#000" fill="none" />
<!-- Body -->
<circle cx="150" cy="150" r="20" fill="#000" />
<!-- Left Antenna -->
<path d="M150 130 l-20 20 l20 20" stroke="#000" fill="none" />
<!-- Right Antenna -->
<path d="M150 130 l20 20 l-20 20" stroke="#000" fill="none" />
<!-- Gears -->
<g transform="translate(130, 100)">
<circle cx="0" cy="0" r="20" stroke="#000" fill="none" />
<path d="M20 0 a20 20 0 0 1 -20 0 l-5 5 a15 15 0 0 0 20 0 z" fill="#000" />
</g>
<g transform="translate(170, 100)">
<circle cx="0" cy="0" r="20" stroke="#000" fill="none" />
<path d="M20 0 a20 20 0 0 1 -20 0 l-5 5 a15 15 0 0 0 20 0 z" fill="#000" />
</g>
<g transform="translate(150, 120)">
<circle cx="0" cy="0" r="20" stroke="#000" fill="none" />
<path d="M20 0 a20 20 0 0 1 -20 0 l-5 5 a15 15 0 0 0 20 0 z" fill="#000" />
</g>
</g>
</svg>
SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="wingGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#8F0A1A" stop-opacity="0.5" />
      <stop offset="50%" stop-color="#FF69B4" stop-opacity="0.7" />
      <stop offset="100%" stop-color="#8F0A1A" stop-opacity="0.5" />
    </linearGradient>
    <radialGradient id="gearGrad" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#333" stop-opacity="0.7" />
      <stop offset="100%" stop-color="#666" stop-opacity="0.9" />
    </radialGradient>
    <pattern id="gearPat" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="5" fill="#999" />
      <line x1="0" y1="10" x2="20" y2="10" stroke="#666" stroke-width="1" />
      <line x1="10" y1="0" x2="10" y2="20" stroke="#666" stroke-width="1" />
    </pattern>
  </defs>
  
  <!-- body -->
  <rect x="120" y="130" width="60" height="40" rx="10" fill="#333" />
  
  <!-- wings -->
  <path d="M 150 100 L 180 150 L 210 100 Z" fill="url(#wingGrad)" stroke="#666" stroke-width="2" />
  <path d="M 150 100 L 120 150 L 90 100 Z" fill="url(#wingGrad)" stroke="#666" stroke-width="2" />
  
  <!-- gear details -->
  <circle cx="140" cy="140" r="15" fill="url(#gearGrad)" />
  <circle cx="160" cy="140" r="15" fill="url(#gearGrad)" />
  <circle cx="150" cy="120" r="20" fill="url(#gearGrad)" />
  
  <!-- wing details -->
  <rect x="90" y="90" width="30" height="20" fill="url(#gearPat)" rx="5" />
  <rect x="180" y="90" width="30" height="20" fill="url(#gearPat)" rx="5" />
  
  <!-- antennae -->
  <line x1="140" y1="70" x2="140" y2="100" stroke="#666" stroke-width="2" />
  <line x1="160" y1="70" x2="160" y2="100" stroke="#666" stroke-width="2" />
  
  <!-- eyes -->
  <circle cx="140" cy="110" r="5" fill="#000" />
  <circle cx="160" cy="110" r="5" fill="#000" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.1 405B Instruct Player 2

Judge's Analysis

    Player 2's submission creatively integrates clock gears into the butterfly design, with a strong emphasis on mechanical elements.

    The use of gradients and symmetrical composition adds to the visual appeal and technical quality.

    In contrast, Player 1's design lacks clarity in representing clock gears, making it less effective in adhering to 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
13
Player 2
15
Rectangles

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

Player 1
Player 2
3
Circles

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

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

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

Player 1
4
Player 2

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
2
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
1
Player 2
6

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

Complexity Metrics

Path Commands

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

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