Back

SVG Drawing Match #109

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clock with its hands made of twisting vines and blooming flowers"

SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="clockFace" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#f0e68c" />
      <stop offset="100%" stop-color="#eedd82" />
    </radialGradient>
    <linearGradient id="vineGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#228B22" />
      <stop offset="100%" stop-color="#006400" />
    </linearGradient>
  </defs>

  <circle cx="150" cy="150" r="100" fill="url(#clockFace)" stroke="#8B4513" stroke-width="5"/>

  <g transform="translate(150, 150)">
    <path id="hourHand" d="M 0 0 C 10 -20, 20 -30, 40 -30" fill="none" stroke="url(#vineGradient)" stroke-width="5" stroke-linecap="round">
      <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="43200s" repeatCount="indefinite"/>
    </path>
    <path id="minuteHand" d="M 0 0 C 15 -30, 30 -50, 60 -50" fill="none" stroke="url(#vineGradient)" stroke-width="3" stroke-linecap="round">
      <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="3600s" repeatCount="indefinite"/>
    </path>
  </g>

  <g transform="translate(150, 150)">
    <g id="flower1" transform="translate(40, -30)">
      <circle cx="0" cy="0" r="5" fill="#FF69B4"/>
      <path d="M 0 -5 a 5 5 0 0 1 5 5 L -5 5 a 5 5 0 0 1 -5 -5" fill="#FFB6C1" transform="rotate(20)"/>
    </g>
    <use href="#flower1" transform="matrix(0.85,0.85,-0.85,0.85,75,-53)"/>
    <g transform="translate(60, -50)">
      <circle cx="0" cy="0" r="4" fill="#DA70D6"/>
      <path d="M -4 0 a 4 4 0 0 1 8 0 a 4 4 0 0 1 -8 0" fill="white" transform="rotate(30)"/>
    </g>

  </g>
  <circle cx="150" cy="150" r="5" fill="#7FFF00"/>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Clock face with gradient background -->
  <circle cx="150" cy="150" r="140" fill="url(#clock-gradient)" stroke="#472900" stroke-width="4"/>
  
  <!-- Center decoration -->
  <circle cx="150" cy="150" r="20" fill="#ff9f00" stroke="#472900" stroke-width="2"/>
  
  <!-- Roman numerals -->
  <g transform="translate(150,150)">
    <text x="140" y="-20" fill="#472900" font-family="serif" font-size="40">XII</text>
    <text x="190" y="50" fill="#472900" font-family="serif" font-size="40">III</text>
    <text x="260" y="140" fill="#472900" font-family="serif" font-size="40">VI</text>
    <text x="190" y="230" fill="#472900" font-family="serif" font-size="40">IX</text>
    <text x="80" y="230" fill="#472900" font-family="serif" font-size="40">III</text>
    <text x="40" y="140" fill="#472900" font-family="serif" font-size="40">VI</text>
    <text x="80" y="50" fill="#472900" font-family="serif" font-size="40">IX</text>
    <text x="140" y="260" fill="#472900" font-family="serif" font-size="40">XII</text>
  </g>

  <!-- Hour hand (vine with flowers) -->
  <g id="hourHand" transform="rotate(90 150,150)">
    <path d="M150,260 C160,260 170,250 170,240 C170,230 160,220 150,220 L150,260"
          fill="none" stroke="#4a2c0f" stroke-width="4"/>
    <!-- Flowers on the hour hand -->
    <circle cx="170" cy="240" r="8" fill="url(#flower-gradient)"/>
    <circle cx="160" cy="230" r="6" fill="url(#flower-gradient)"/>
    <circle cx="150" cy="220" r="4" fill="url(#flower-gradient)"/>
  </g>

  <!-- Minute hand (longer vine with more flowers) -->
  <g id="minuteHand" transform="rotate(90 150,150)">
    <path d="M150,260 C160,260 180,240 190,220 C200,200 190,180 180,160 L150,260"
          fill="none" stroke="#4a2c0f" stroke-width="4"/>
    <!-- Flowers on the minute hand -->
    <circle cx="180" cy="160" r="8" fill="url(#flower-gradient)"/>
    <circle cx="190" cy="170" r="6" fill="url(#flower-gradient)"/>
    <circle cx="200" cy="180" r="4" fill="url(#flower-gradient)"/>
  </g>

  <!-- Second hand (small red circle) -->
  <g id="secondHand" transform="rotate(90 150,150)">
    <circle cx="150" cy="260" r="4" fill="#ff0000"/>
  </g>

  <!-- Animations -->
  <style>
    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    #secondHand { animation: rotate 60s linear infinite; }
    #minuteHand { animation: rotate 3600s linear infinite; }
    #hourHand { animation: rotate 43200s linear infinite; }
  </style>

  <!-- Gradients -->
  <defs>
    <radialGradient id="clock-gradient" cx="150" cy="150" r="140"
                    fx="150" fy="150" gradientUnits="userSpaceOnUse">
      <stop offset="0%" style="stop-color:#f2c464;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#ff9f00;stop-opacity:1"/>
    </radialGradient>
    <radialGradient id="flower-gradient" cx="0" cy="0" r="10"
                    fx="0" fy="0" gradientUnits="userSpaceOnUse">
      <stop offset="0%" style="stop-color:#ff9f00;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#ffd700;stop-opacity:1"/>
    </radialGradient>
  </defs>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini Pro 1.5 Player 1

Judge's Analysis

    Player 1's image creatively integrates the concept of twisting vines and blooming flowers as clock hands, with a clear representation of both elements.

    The use of color and simple design effectively highlights the organic theme.

    Player 2's image, while technically polished, lacks visible floral elements, focusing more on vine-like structures, which slightly deviates from the prompt.

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
8
Player 2
11
Rectangles

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

Player 1
Player 2
Circles

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

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

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

Player 1
4
Player 2
4

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
4

Interactivity Metrics

Animations

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

Player 1
2
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
7
Player 2
4

Complexity Metrics

Path Commands

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

Player 1
11
Player 2
8
Max Group Nesting

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

Player 1
1
Player 2
Defs Elements

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

Player 1
2
Player 2
2
Use Elements

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

Player 1
1
Player 2

Text Metrics

Text Elements

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

Player 1
Player 2
8

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