Back

SVG Drawing Match #1119

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Dandelion with gears as seeds, releasing mechanical butterflies"

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="#f3ecc2" />
  
  <!-- Dandelion -->
  <circle cx="150" cy="150" r="80" fill="#fce2c4" />
  <circle cx="150" cy="150" r="60" fill="#f796a2" />
  <circle cx="150" cy="150" r="40" fill="#fcb39d" />
  <circle cx="150" cy="150" r="20" fill="#f66c7b" />
  
  <!-- Gears as seeds -->
  <g transform="translate(150,150)">
    <circle cx="-80" cy="0" r="10" fill="#dadada" />
    <path d="M30,0a10,10 0 1,0 20,0a10,10 0 1,0 -20,0" fill="#dadada" />
    <path d="M60,0a30,30 0 1,0 60,0a30,30 0 1,0 -60,0" fill="#dadada" />
    <path d="M100,0a50,50 0 1,0 100,0a50,50 0 1,0 -100,0" fill="#dadada" />
  </g>
  
  <!-- Mechanical butterflies -->
  <g transform="translate(150,150)">
    <path d="M20,-40c2,10 -20,10 -18,0" fill="#88e0db" />
    <path d="M20,-40c2,15 -20,15 -18,0" fill="#99d8c6" />
    <circle cx="0" cy="-80" r="10" fill="#f9a03f" />
    <rect x="-10" y="-55" width="20" height="10" fill="#f9a03f" transform="rotate(45)" />
  </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="stemGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#4CAF50"/>
      <stop offset="100%" style="stop-color:#81C784"/>
    </linearGradient>
    <radialGradient id="flowerCenter" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#FFD700"/>
      <stop offset="100%" style="stop-color:#FFA000"/>
    </radialGradient>
  </defs>

  <!-- Stem -->
  <path d="M150,280 Q140,200 160,150" stroke="url(#stemGradient)" stroke-width="8" fill="none"/>
  
  <!-- Leaves -->
  <path d="M160,220 Q180,210 190,220 Q180,230 160,220" fill="#4CAF50"/>
  <path d="M140,200 Q120,190 110,200 Q120,210 140,200" fill="#4CAF50"/>

  <!-- Main flower center -->
  <circle cx="150" cy="150" r="20" fill="url(#flowerCenter)"/>

  <!-- Mechanical gears as seeds -->
  <g id="gearSeeds">
    <g transform="translate(150,150)">
      <g id="gear" fill="#555">
        <circle r="8"/>
        <path d="M0,-8 L2,-12 L-2,-12 Z M8,0 L12,2 L12,-2 Z M0,8 L-2,12 L2,12 Z M-8,0 L-12,-2 L-12,2 Z"/>
      </g>
    </g>
    <!-- Multiple gear instances with animation -->
    <use href="#gear" transform="translate(180,130)">
      <animateTransform attributeName="transform" type="rotate" from="0 180 130" to="360 180 130" dur="4s" repeatCount="indefinite"/>
    </use>
    <use href="#gear" transform="translate(170,170)">
      <animateTransform attributeName="transform" type="rotate" from="360 170 170" to="0 170 170" dur="3s" repeatCount="indefinite"/>
    </use>
  </g>

  <!-- Mechanical butterflies -->
  <g class="butterfly" fill="#FF9800">
    <g transform="translate(200,100)">
      <path d="M0,0 L10,-10 L20,0 L10,10 Z">
        <animate attributeName="d" 
                 values="M0,0 L10,-10 L20,0 L10,10 Z;M0,0 L10,-5 L20,0 L10,5 Z;M0,0 L10,-10 L20,0 L10,10 Z" 
                 dur="1s" 
                 repeatCount="indefinite"/>
      </path>
      <circle cx="10" cy="0" r="2"/>
      <path d="M8,-2 L12,-2 L10,2 Z"/>
    </g>
    <g transform="translate(220,130)">
      <path d="M0,0 L10,-10 L20,0 L10,10 Z">
        <animate attributeName="d" 
                 values="M0,0 L10,-10 L20,0 L10,10 Z;M0,0 L10,-5 L20,0 L10,5 Z;M0,0 L10,-10 L20,0 L10,10 Z" 
                 dur="0.8s" 
                 repeatCount="indefinite"/>
      </path>
      <circle cx="10" cy="0" r="2"/>
      <path d="M8,-2 L12,-2 L10,2 Z"/>
    </g>
  </g>

  <!-- Floating gears with paths -->
  <path id="floatPath1" d="M150,150 Q200,100 250,150" fill="none"/>
  <path id="floatPath2" d="M150,150 Q180,120 210,80" fill="none"/>

  <g>
    <animateMotion dur="5s" repeatCount="indefinite">
      <mpath href="#floatPath1"/>
    </animateMotion>
    <use href="#gear"/>
  </g>
  <g>
    <animateMotion dur="4s" repeatCount="indefinite">
      <mpath href="#floatPath2"/>
    </animateMotion>
    <use href="#gear"/>
  </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 more closely adheres to the prompt with a clear representation of a dandelion and mechanical elements.

    The gears as seeds and the butterfly-like shapes are well integrated, demonstrating creativity and technical quality.

    Player 1's image, while colorful, lacks clear representation of the given theme.

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
14
Rectangles

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

Player 1
2
Player 2
Circles

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

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

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

Player 1
2
Player 2
8

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
3

Interactivity Metrics

Animations

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

Player 1
Player 2
6
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
3
Player 2
5

Complexity Metrics

Path Commands

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

Player 1
13
Player 2
46
Max Group Nesting

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

Player 1
Player 2
2
Defs Elements

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

Player 1
Player 2
2
Use Elements

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

Player 1
Player 2
4

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