Back

SVG Drawing Match #591

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Clock-faced sunflower in a geometric dreamscape"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:rgb(255,223,92);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(245,66,111);stop-opacity:1" />
    </linearGradient>
  </defs>
  
  <!-- Geometric Dreamscape Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#grad1)" />
  
  <!-- Clock-faced Sunflower in the Center -->
  <circle cx="150" cy="150" r="100" fill="yellow" />
  <circle cx="150" cy="150" r="90" fill="orange" />
  
  <!-- Sunflower Petals -->
  <g id="petals">
    <circle cx="150" cy="50" r="40" fill="yellow" />
    <circle cx="205" cy="78" r="40" fill="yellow" />
    <circle cx="227" cy="133" r="40" fill="yellow" />
    <circle cx="200" cy="190" r="40" fill="yellow" />
    <circle cx="150" cy="220" r="40" fill="yellow" />
    <circle cx="95" cy="190" r="40" fill="yellow" />
    <circle cx="70" cy="133" r="40" fill="yellow" />
    <circle cx="95" cy="78" r="40" fill="yellow" />
  </g>
  
  <!-- Clock Patterns on Sunflower Petals -->
  <use href="#petals" />
  <circle cx="150" cy="50" r="5" fill="black" />
  <circle cx="205" cy="78" r="5" fill="black" />
  <circle cx="227" cy="133" r="5" fill="black" />
  <circle cx="200" cy="190" r="5" fill="black" />
  <circle cx="150" cy="220" r="5" fill="black" />
  <circle cx="95" cy="190" r="5" fill="black" />
  <circle cx="70" cy="133" r="5" fill="black" />
  <circle cx="95" cy="78" r="5" fill="black" />
</svg>
SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <pattern id="gridPattern" width="20" height="20" patternUnits="userSpaceOnUse">
      <path d="M0 0h20v20H0z" fill="none" stroke="#8B4513" stroke-width="0.5" opacity="0.3"/>
    </pattern>
    <radialGradient id="sunflowerCenter" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#4A2B0F"/>
      <stop offset="100%" stop-color="#2C1810"/>
    </radialGradient>
    <linearGradient id="petalGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="100%" stop-color="#FFA500"/>
    </linearGradient>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#1A1A2E"/>
  <rect x="0" y="0" width="300" height="300" fill="url(#gridPattern)"/>

  <!-- Geometric shapes -->
  <polygon points="150,50 250,200 50,200" fill="none" stroke="#4B0082" stroke-width="2" opacity="0.6"/>
  <circle cx="150" cy="150" r="120" fill="none" stroke="#800080" stroke-width="3" opacity="0.4"/>

  <!-- Sunflower petals with clock numbers -->
  <g transform="translate(150,150)">
    <g id="petals">
      <g transform="rotate(0)">
        <path d="M0,-100 C20,-80 20,-60 0,-40 C-20,-60 -20,-80 0,-100" fill="url(#petalGradient)"/>
        <text x="0" y="-70" text-anchor="middle" fill="white" font-size="12">12</text>
      </g>
    </g>
    <use href="#petals" transform="rotate(30)"/>
    <use href="#petals" transform="rotate(60)"/>
    <use href="#petals" transform="rotate(90)"/>
    <use href="#petals" transform="rotate(120)"/>
    <use href="#petals" transform="rotate(150)"/>
    <use href="#petals" transform="rotate(180)"/>
    <use href="#petals" transform="rotate(210)"/>
    <use href="#petals" transform="rotate(240)"/>
    <use href="#petals" transform="rotate(270)"/>
    <use href="#petals" transform="rotate(300)"/>
    <use href="#petals" transform="rotate(330)"/>
  </g>

  <!-- Clock hands -->
  <g transform="translate(150,150)">
    <line x1="0" y1="0" x2="0" y2="-60" stroke="#E6E6FA" stroke-width="3"/>
    <line x1="0" y1="0" x2="40" y2="0" stroke="#E6E6FA" stroke-width="4"/>
  </g>

  <!-- Center of flower -->
  <circle cx="150" cy="150" r="30" fill="url(#sunflowerCenter)"/>
  <circle cx="150" cy="150" r="25" fill="none" stroke="#DEB887" stroke-width="2"/>

  <!-- Decorative elements -->
  <circle cx="150" cy="150" r="15" fill="#4A2B0F"/>
  <circle cx="150" cy="150" r="5" fill="#FFD700"/>
</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 creatively incorporates both the clock and sunflower elements by integrating clock numerals into the petals, effectively adhering to the prompt.

    The geometric grid background adds to the dreamscape theme, enhancing visual appeal.

    Player 1's design is bright and simple but lacks the intricate detail and clear clock-face integration seen in Player 2's submission.

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
19
Player 2
12
Rectangles

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

Player 1
1
Player 2
2
Circles

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

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

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

Player 1
Player 2
1
Paths

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

Player 1
Player 2
2
Groups

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

Player 1
1
Player 2
4

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
3
Player 2
11

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

Complexity Metrics

Path Commands

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

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

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

Player 1
1
Player 2
11

Text Metrics

Text Elements

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

Player 1
Player 2
1

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