Back

SVG Drawing Match #519

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Woven clockwork flowers in a glass terrarium"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Definitions for gradients and patterns -->
  <defs>
    <linearGradient id="glassGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:rgba(173,216,230,0.6);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgba(135,206,250,0.6);stop-opacity:1" />
    </linearGradient>
    <radialGradient id="flowerGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#ff6ec7" />
      <stop offset="100%" style="stop-color:#c71585" />
    </radialGradient>
    <linearGradient id="gearGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#808080" />
      <stop offset="100%" style="stop-color:#696969" />
    </linearGradient>
    <pattern id="metalPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <line x1="0" y1="5" x2="10" y2="5" stroke="#bbb" stroke-width="1"/>
      <line x1="5" y1="0" x2="5" y2="10" stroke="#bbb" stroke-width="1"/>
    </pattern>
  </defs>

  <!-- Glass Terrarium -->
  <ellipse cx="150" cy="280" rx="100" ry="20" fill="url(#glassGradient)" stroke="#87CEEB" stroke-width="2"/>
  <path d="M50,280 C50,100 250,100 250,280" fill="none" stroke="url(#glassGradient)" stroke-width="4"/>
  <ellipse cx="150" cy="100" rx="100" ry="20" fill="url(#glassGradient)" stroke="#87CEEB" stroke-width="2"/>

  <!-- Woven Clockwork Flowers -->
  <g transform="translate(150, 190)">
    <!-- Flower Petals -->
    <g id="petals">
      <circle cx="0" cy="-60" r="20" fill="url(#flowerGradient)" />
      <circle cx="52" cy="-30" r="20" fill="url(#flowerGradient)" transform="rotate(60)" />
      <circle cx="52" cy="30" r="20" fill="url(#flowerGradient)" transform="rotate(120)" />
      <circle cx="0" cy="60" r="20" fill="url(#flowerGradient)" />
      <circle cx="-52" cy="30" r="20" fill="url(#flowerGradient)" transform="rotate(-120)" />
      <circle cx="-52" cy="-30" r="20" fill="url(#flowerGradient)" transform="rotate(-60)" />
    </g>

    <!-- Gears Interwoven -->
    <g id="gears">
      <g transform="rotate(0)">
        <circle cx="0" cy="-40" r="10" fill="url(#gearGradient)" />
        <path d="M0,-50 L0,-30" stroke="#555" stroke-width="2"/>
        <path d="M-10,-40 L10,-40" stroke="#555" stroke-width="2"/>
      </g>
      <g transform="rotate(60)">
        <circle cx="0" cy="-40" r="10" fill="url(#gearGradient)" />
        <path d="M0,-50 L0,-30" stroke="#555" stroke-width="2"/>
        <path d="M-10,-40 L10,-40" stroke="#555" stroke-width="2"/>
      </g>
      <g transform="rotate(120)">
        <circle cx="0" cy="-40" r="10" fill="url(#gearGradient)" />
        <path d="M0,-50 L0,-30" stroke="#555" stroke-width="2"/>
        <path d="M-10,-40 L10,-40" stroke="#555" stroke-width="2"/>
      </g>
      <g transform="rotate(180)">
        <circle cx="0" cy="-40" r="10" fill="url(#gearGradient)" />
        <path d="M0,-50 L0,-30" stroke="#555" stroke-width="2"/>
        <path d="M-10,-40 L10,-40" stroke="#555" stroke-width="2"/>
      </g>
      <g transform="rotate(240)">
        <circle cx="0" cy="-40" r="10" fill="url(#gearGradient)" />
        <path d="M0,-50 L0,-30" stroke="#555" stroke-width="2"/>
        <path d="M-10,-40 L10,-40" stroke="#555" stroke-width="2"/>
      </g>
      <g transform="rotate(300)">
        <circle cx="0" cy="-40" r="10" fill="url(#gearGradient)" />
        <path d="M0,-50 L0,-30" stroke="#555" stroke-width="2"/>
        <path d="M-10,-40 L10,-40" stroke="#555" stroke-width="2"/>
      </g>
    </g>

    <!-- Central Gear -->
    <g id="centralGear">
      <circle cx="0" cy="0" r="15" fill="url(#gearGradient)" />
      <path d="M0,-20 L0,20" stroke="#555" stroke-width="2"/>
      <path d="M-20,0 L20,0" stroke="#555" stroke-width="2"/>
    </g>

    <!-- Additional Interwoven Lines -->
    <path d="M0,-60 L0,60" stroke="url(#metalPattern)" stroke-width="1"/>
    <path d="M-52,-30 L52,30" stroke="url(#metalPattern)" stroke-width="1"/>
    <path d="M52,-30 L-52,30" stroke="url(#metalPattern)" stroke-width="1"/>
  </g>

  <!-- Decorative Elements -->
  <g>
    <circle cx="150" cy="280" r="100" fill="none" stroke="#ADD8E6" stroke-dasharray="5,5" stroke-width="1"/>
    <path d="M50,100 C50,50 250,50 250,100" fill="none" stroke="#87CEEB" stroke-width="2" />
  </g>
</svg>
SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background gradient -->
  <defs>
    <linearGradient id="terrariumGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#88bur5" stop-opacity="0.8" />
      <stop offset="100%" stop-color="#66b3ff" stop-opacity="0.8" />
    </linearGradient>
    <linearGradient id="clockworkGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#994d00" stop-opacity="0.9" />
      <stop offset="100%" stop-color="#ffd700" stop-opacity="0.9" />
    </linearGradient>
    <radialGradient id="flowerGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#ffeeff" stop-opacity="0.9" />
      <stop offset="100%" stop-color="#FFC5C5" stop-opacity="0.9" />
    </radialGradient>
  </defs>

  <!-- Terrarium -->
  <rect x="50" y="50" width="200" height="200" fill="none" stroke="#66b3ff" stroke-width="4" rx="20" />
  <rect x="50" y="50" width="200" height="200" fill="url(#terrariumGradient)" rx="20" />

  <!-- Flowers -->
  <g transform="translate(130, 100) scale(0.7)">
    <g transform="rotate(45)">
      <path d="M 0,0 C -20,-50 50,0 0,50 C -10,40 -10,10 0,0" fill="url(#flowerGradient)" />
      <path d="M 0,0 C 20,-50 -50,0 0,50 C 10,40 10,10 0,0" fill="url(#flowerGradient)" />
    </g>
    <g transform="rotate(135)">
      <path d="M 0,0 C -20,-50 50,0 0,50 C -10,40 -10,10 0,0" fill="url(#flowerGradient)" />
      <path d="M 0,0 C 20,-50 -50,0 0,50 C 10,40 10,10 0,0" fill="url(#flowerGradient)" />
    </g>
  </g>

  <!-- Woven clockwork mechanism -->
  <g transform="translate(130, 120)">
    <g transform="scale(0.7)">
      <circle cx="0" cy="0" r="20" fill="#eeeeee" stroke="# nghề994d00" stroke-width="2" />
      <line x1="0" y1="0" x2="20" y2="0" stroke="#994d00" stroke-width="2" />
      <line x1="0" y1="0" x2="-20" y2="0" stroke="#994d00" stroke-width="2" />
      <line x1="0" y1="0" x2="0" y2="20" stroke="#994d00" stroke-width="2" />
      <line x1="0" y1="0" x2="0" y2="-20" stroke="#994d00" stroke-width="2" />
    </g>
    <g transform="scale(0.7) rotate(45)">
      <circle cx="0" cy="0" r="20" fill="#eeeeee" stroke="#994d00" stroke-width="2" />
      <line x1="0" y1="0" x2="20" y2="0" stroke="#994d00" stroke-width="2" />
      <line x1="0" y1="0" x2="-20" y2="0" stroke="#994d00" stroke-width="2" />
      <line x1="0" y1="0" x2="0" y2="20" stroke="#994d00" stroke-width="2" />
      <line x1="0" y1="0" x2="0" y2="-20" stroke="#994d00" stroke-width="2" />
    </g>
  </g>

  <!-- clockwork lines -->
  <g transform="translate(130, 120)">
    <line x1="20" y1="-10" x2="40" y2="10" stroke="url(#clockworkGradient)" stroke-width="2" />
    <line x1="20" y1="10" x2="40" y2="-10" stroke="url(#clockworkGradient)" stroke-width="2" />
    <line x1="-20" y1="-10" x2="-40" y2="10" stroke="url(#clockworkGradient)" stroke-width="2" />
    <line x1="-20" y1="10" x2="-40" y2="-10" stroke="url(#clockworkGradient)" stroke-width="2" />
    <line x1="0" y1="20" x2="10" y2="40" stroke="url(#clockworkGradient)" stroke-width="2" />
    <line x1="0" y1="20" x2="-10" y2="40" stroke="url(#clockworkGradient)" stroke-width="2" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 1

Judge's Analysis

    Player 1's submission captures the concept of 'woven clockwork flowers in a glass terrarium' more effectively.

    The image features a clear representation of flowers with mechanical elements and is enclosed within a glass-like structure, adhering closely to the prompt.

    The composition is visually appealing, with a balanced use of color and form, while Player 2's image lacks clarity in depicting the theme and is less visually coherent.

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
37
Player 2
22
Rectangles

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

Player 1
Player 2
2
Circles

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

Player 1
14
Player 2
2
Ellipses

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

Player 1
2
Player 2
Lines

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

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

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

Player 1
11
Player 2
7

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
3
Patterns

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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

Complexity Metrics

Path Commands

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

Player 1
38
Player 2
12
Max Group Nesting

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

Player 1
2
Player 2
1
Defs Elements

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

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