Back

SVG Drawing Match #418

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clock with hands made of rainbow-colored feathers, tickling a giant sleeping cloud"

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="featherGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color: red; stop-opacity: 1" />
      <stop offset="17%" style="stop-color: orange; stop-opacity: 1" />
      <stop offset="34%" style="stop-color: yellow; stop-opacity: 1" />
      <stop offset="51%" style="stop-color: green; stop-opacity: 1" />
      <stop offset="68%" style="stop-color: blue; stop-opacity: 1" />
      <stop offset="85%" style="stop-color: indigo; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: violet; stop-opacity: 1" />
    </linearGradient>
    <filter id="cloudShadow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur in="SourceAlpha" stdDeviation="5" />
      <feOffset dx="0" dy="2" result="offsetblur" />
      <feFlood flood-color="rgba(0, 0, 0, 0.3)" />
      <feComposite in2="offsetblur" operator="in" />
      <feMerge>
        <feMergeNode />
        <feMergeNode in="SourceGraphic" />
      </feMerge>
    </filter>
  </defs>
  
  <rect width="100%" height="100%" fill="#87CEFA" />
  <ellipse cx="150" cy="210" rx="80" ry="30" fill="#FFFFFF" filter="url(#cloudShadow)" />
  
  <g>
    <ellipse cx="150" cy="150" rx="60" ry="70" fill="#F0F8FF" />
    <circle cx="150" cy="150" r="60" fill="url(#featherGradient)" />
    <circle cx="150" cy="150" r="55" fill="#F0F8FF" />
  </g>

  <g transform="translate(150, 150)">
    <line x1="0" y1="-40" x2="0" y2="-70" stroke="url(#featherGradient)" stroke-width="6" stroke-linecap="round" />
    <line x1="0" y1="0" x2="-30" y2="20" stroke="url(#featherGradient)" stroke-width="6" stroke-linecap="round" />
    <path d="M 0 -70 Q 5 -75, 10 -70 Q 5 -65, 0 -70 Z" fill="url(#featherGradient)" />
    <path d="M -30 20 Q -35 15, -32 10 Q -30 8, -26 13 Q -28 18, -30 20 Z" fill="url(#featherGradient)" />
  </g>
  
  <text x="50" y="40" fill="#333333" font-family="Comic Sans MS" font-size="20" text-anchor="start">Tickle Tickle!</text>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color: #a8e6ff; stop-opacity:1" />
      <stop offset="100%" style="stop-color: #f0f8ff; stop-opacity:1" />
    </linearGradient>
    <radialGradient id="cloudGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color: #ffffff; stop-opacity:1" />
      <stop offset="100%" style="stop-color: #d0dfff; stop-opacity:1" />
    </radialGradient>
    <linearGradient id="clockGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color: #ffe0b3; stop-opacity:1" />
      <stop offset="100%" style="stop-color: #ffcc80; stop-opacity:1" />
    </linearGradient>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />

  <!-- Giant Sleeping Cloud -->
  <g id="cloud" transform="translate(150,180)">
    <ellipse cx="0" cy="0" rx="80" ry="50" fill="url(#cloudGradient)" />
    <ellipse cx="-60" cy="-10" rx="50" ry="30" fill="url(#cloudGradient)" />
    <ellipse cx="60" cy="-10" rx="50" ry="30" fill="url(#cloudGradient)" />
    <ellipse cx="-30" cy="-40" rx="40" ry="25" fill="url(#cloudGradient)" />
    <ellipse cx="30" cy="-40" rx="40" ry="25" fill="url(#cloudGradient)" />
  </g>

  <!-- Clock Face -->
  <circle cx="150" cy="150" r="60" fill="url(#clockGradient)" stroke="#ffcc80" stroke-width="4"/>
  
  <!-- Clock Numbers -->
  <g font-family="Arial" font-size="12" fill="#664d00" text-anchor="middle">
    <text x="150" y="90">12</text>
    <text x="210" y="160">3</text>
    <text x="150" y="230">6</text>
    <text x="90" y="160">9</text>
  </g>

  <!-- Rainbow Feather Hour Hand -->
  <g transform="rotate(45,150,150)">
    <path d="M150,150 L150,100 Q152,98 154,100 T158,105 Q160,107 158,110 T154,115 Q152,117 150,115 T146,110 Q144,108 146,105 T150,100 Z"
          fill="url(#featherGradient1)" />
    <defs>
      <linearGradient id="featherGradient1" x1="0%" y1="0%" x2="100%" y2="0%">
        <stop offset="0%" style="stop-color:#ff0000;stop-opacity:1" />
        <stop offset="100%" style="stop-color:#ff7f00;stop-opacity:1" />
      </linearGradient>
    </defs>
  </g>

  <!-- Rainbow Feather Minute Hand -->
  <g transform="rotate(120,150,150)">
    <path d="M150,150 L150,80 Q152,78 154,80 T158,85 Q160,87 158,90 T154,95 Q152,97 150,95 T146,90 Q144,88 146,85 T150,80 Z"
          fill="url(#featherGradient2)" />
    <defs>
      <linearGradient id="featherGradient2" x1="0%" y1="0%" x2="100%" y2="0%">
        <stop offset="0%" style="stop-color:#ffff00;stop-opacity:1" />
        <stop offset="100%" style="stop-color:#00ff00;stop-opacity:1" />
      </linearGradient>
    </defs>
  </g>

  <!-- Rainbow Feather Second Hand -->
  <g transform="rotate(200,150,150)">
    <path d="M150,150 L150,70 Q152,68 154,70 T158,75 Q160,77 158,80 T154,85 Q152,87 150,85 T146,80 Q144,78 146,75 T150,70 Z"
          fill="url(#featherGradient3)" />
    <defs>
      <linearGradient id="featherGradient3" x1="0%" y1="0%" x2="100%" y2="0%">
        <stop offset="0%" style="stop-color:#0000ff;stop-opacity:1" />
        <stop offset="100%" style="stop-color:#4b0082;stop-opacity:1" />
      </linearGradient>
    </defs>
  </g>

  <!-- Tickling Effect -->
  <path d="M150,150 Q160,160 170,150" stroke="#d0d0d0" stroke-width="2" fill="none" opacity="0.5" />

  <!-- Sleep Zs -->
  <g fill="#a0a0a0" font-family="Arial" font-size="20">
    <text x="180" y="140">Z</text>
    <text x="190" y="130">Z</text>
    <text x="200" y="120">Z</text>
  </g>
</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 creatively integrates the concept of a clock and a cloud, presenting a visually appealing and cohesive design.

    The clock face is set against a cloud, and the rainbow-colored elements are subtle yet present, enhancing the overall composition.

    In contrast, Player 1's image lacks the cloud element and is less visually engaging, focusing primarily on the clock without the interactive aspect of tickling a cloud.

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

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

Player 1
1
Player 2
1
Circles

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

Player 1
2
Player 2
1
Ellipses

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

Player 1
2
Player 2
5
Lines

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

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

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

Player 1
2
Player 2
6

Visual Effects Metrics

Gradients

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

Player 1
1
Player 2
6
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
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
1
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
4
Player 2
4

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
1
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
9
Player 2
35
Max Group Nesting

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

Player 1
Player 2
Defs Elements

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

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

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