Back

SVG Drawing Match #1037

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating clockwork butterfly with transparent gears, drawn in a geometric style"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#f0f0f0" />
  
  <!-- Clockwork Gears -->
  <circle cx="150" cy="150" r="80" fill="#ffd700" />
  <circle cx="150" cy="150" r="60" fill="#ffd700" />
  <circle cx="150" cy="150" r="40" fill="#ffd700" />
  <circle cx="150" cy="150" r="20" fill="#ffd700" />
  
  <!-- Transparent Butterfly Shape -->
  <path d="M150,100 C120,60 90,60 60,100 C30,140 30,180 60,220 C90,260 120,260 150,220 C180,260 210,260 240,220 C270,180 270,140 240,100 C210,60 180,60 150,100" fill="none" stroke="#000" stroke-width="2" />
  
  <!-- Geometric Details -->
  <path d="M120,190 Q150,160 180,190 Q150,210 120,190" fill="none" stroke="#000" stroke-width="2" />
  <rect x="118" y="140" width="4" height="60" fill="#000" />
  <rect x="178" y="140" width="4" height="60" fill="#000" />
  
  <!-- Vibrant Colors and Gradients -->
  <defs>
    <linearGradient id="gradient1" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ff6347" />
      <stop offset="100%" stop-color="#ff4500" />
    </linearGradient>
  </defs>
  <circle cx="150" cy="150" r="120" fill="url(#gradient1)" />
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="wingGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(255,69,0);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(75,0,130);stop-opacity:1" />
    </linearGradient>
    <linearGradient id="gearGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:rgba(192, 192, 192, 0.5);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgba(100, 100, 100, 0.5);stop-opacity:1" />
    </linearGradient>
    <pattern id="gearPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="2" cy="2" r="2" fill="rgba(255,255,255,0.1)" />
    </pattern>
  </defs>
  <g transform="translate(150, 150) scale(0.8)">
    <!-- Body -->
    <rect x="-10" y="-50" width="20" height="100" rx="5" ry="5" fill="url(#wingGradient)" />
    <!-- Left Wing -->
    <path d="M-10,-30 C-90,-80 -90,-180, -30,-80 Q-55,-45, -10,-30"
          fill="url(#wingGradient)" stroke="black" stroke-width="1" />
    <circle cx="-55" cy="-90" r="20" fill="url(#gearPattern)">
      <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="20s" repeatCount="indefinite" />
    </circle>
    <!-- Right Wing -->
    <path d="M10,-30 C90,-80 90,-180, 30,-80 Q55,-45, 10,-30"
          fill="url(#wingGradient)" stroke="black" stroke-width="1" />
    <circle cx="55" cy="-90" r="20" fill="url(#gearPattern)">
      <animateTransform attributeName="transform" type="rotate" from="0" to="-360" dur="20s" repeatCount="indefinite" />
    </circle>
    <!-- Clockwork Mechanism -->
    <circle cx="0" cy="-20" r="40" fill="url(#gearGradient)" stroke="black" stroke-width="1" />
    <path d="M0,-20 m-38,0 a38,38 0 1,0 76,0 a38,38 0 1,0 -76,0" fill="none" stroke="black" stroke-width="2" stroke-dasharray="6,2" />
    <circle cx="0" cy="-20" r="4" fill="black" />
    <circle cx="0" cy="-20" r="10" fill="none" stroke="black" stroke-width="1">
      <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="10s" repeatCount="indefinite" />
    </circle>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 2

Judge's Analysis

    Player 2's submission effectively captures the idea of a 'floating clockwork butterfly with transparent gears' in a geometric style.

    The design includes visible gears and a clear butterfly form, adhering closely to the prompt with technical precision and creativity.

    In contrast, Player 1's image does not depict the prompt elements, lacking both thematic and visual alignment.

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

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

Player 1
3
Player 2
1
Circles

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

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

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

Player 1
Player 2
1

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
2

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
Player 2
3
Elements with Transform

The number of elements with transform attributes in the SVG.

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