Back

SVG Drawing Match #85

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clock-faced sunflower with its petals as moving clock hands"

SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Clock-faced sunflower center -->
  <circle cx="150" cy="150" r="30" fill="#F2C464" />
  <circle cx="150" cy="150" r="25" fill="#FFF" />
  <text x="145" y="170" font-size="24" font-family="Arial" fill="#333" text-anchor="middle">12</text>
  
  <!-- Petal clock hands -->
  <g transform="rotate(0 150 150)">
    <path d="M 150 80 C 160 130 180 150 200 140" stroke="#FF69B4" stroke-width="5" fill="none" />
  </g>
  <g transform="rotate(120 150 150)">
    <path d="M 150 80 C 160 130 180 150 200 140" stroke="#33CC33" stroke-width="5" fill="none" />
  </g>
  <g transform="rotate(240 150 150)">
    <path d="M 150 80 C 160 130 180 150 200 140" stroke="#6666CC" stroke-width="5" fill="none" />
  </g>
  
  <!-- Outer petals -->
  <g>
    <path d="M 150 120 C 180 100 200 130 220 140" fill="#F7DC6F" />
    <path d="M 150 120 C 120 100 100 130 80 140" fill="#F7DC6F" />
    <path d="M 150 180 C 180 160 200 190 220 200" fill="#F7DC6F" />
    <path d="M 150 180 C 120 160 100 190 80 200" fill="#F7DC6F" />
  </g>
  
  <!-- Gradient shadow -->
  <defs>
    <radialGradient id="shadow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#000" stop-opacity="0.5" />
      <stop offset="100%" stop-color="#000" stop-opacity="0" />
    </radialGradient>
  </defs>
  <circle cx="150" cy="150" r="40" fill="url(#shadow)" />
  
  <!-- Center detail -->
  <circle cx="150" cy="150" r="10" fill="#333" />
  <path d="M 145 155 L 155 155" stroke="#333" stroke-width="2" />
  <path d="M 150 150 L 150 160" stroke="#333" stroke-width="2" />
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="bgGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FFEDD5"/>
      <stop offset="100%" stop-color="#FBBF24"/>
    </radialGradient>
    <radialGradient id="clockFaceGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FFF7E6"/>
      <stop offset="100%" stop-color="#F59E0B"/>
    </radialGradient>
    <linearGradient id="petalGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#FBBF24" />
      <stop offset="100%" stop-color="#F59E0B" />
    </linearGradient>
    <pattern id="clockMarks" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="1.5" fill="#F97316" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#bgGradient)" />
  <!-- Central Clock Face -->
  <circle cx="150" cy="150" r="60" fill="url(#clockFaceGradient)" stroke="#D97706" stroke-width="4"/>
  <!-- Clock Numbers -->
  <g font-family="Arial" font-size="12" fill="#B45309" text-anchor="middle">
    <text x="150" y="130">12</text>
    <text x="192" y="160">3</text>
    <text x="150" y="190">6</text>
    <text x="108" y="160">9</text>
  </g>
  <!-- Petals as Clock Hands -->
  <g transform="translate(150,150)">
    <!-- Define a petal shape -->
    <defs>
      <path id="petal" d="M0,0 L10,-100 Q12,-105 15,-100 L15,0 Z" fill="url(#petalGradient)" />
    </defs>
    <!-- Create multiple petals rotated around the center -->
    <g>
      <use href="#petal" transform="rotate(0)" />
      <use href="#petal" transform="rotate(30)" />
      <use href="#petal" transform="rotate(60)" />
      <use href="#petal" transform="rotate(90)" />
      <use href="#petal" transform="rotate(120)" />
      <use href="#petal" transform="rotate(150)" />
      <use href="#petal" transform="rotate(180)" />
      <use href="#petal" transform="rotate(210)" />
      <use href="#petal" transform="rotate(240)" />
      <use href="#petal" transform="rotate(270)" />
      <use href="#petal" transform="rotate(300)" />
      <use href="#petal" transform="rotate(330)" />
    </g>
  </g>
  <!-- Inner Details -->
  <circle cx="150" cy="150" r="10" fill="#F97316" />
  <circle cx="150" cy="150" r="5" fill="#EA580C" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's submission better integrates the concept of a clock-faced sunflower.

    The petals effectively serve as clock hands, and the overall composition is visually appealing with a warm color palette that enhances the sunflower theme.

    Player 1's design is less cohesive and doesn't visually communicate the idea as clearly or attractively.

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

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

Player 1
Player 2
1
Circles

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

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

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

Player 1
4
Player 2
3

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
8

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
13

Complexity Metrics

Path Commands

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

Player 1
18
Player 2
5
Max Group Nesting

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

Player 1
Player 2
1
Defs Elements

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

Player 1
1
Player 2
5
Use Elements

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

Player 1
Player 2
12

Text Metrics

Text Elements

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

Player 1
1
Player 2
4

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