Back

SVG Drawing Match #1794

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Clock with mismatched hands inside a floating teacup"

SVG by o1-mini (2024-09-12)
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Definitions for gradients and patterns -->
  <defs>
    <linearGradient id="cupGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#FFDEE9; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#B5FFFC; stop-opacity:1" />
    </linearGradient>
    <radialGradient id="clockGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#FFD700; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFA500; stop-opacity:1" />
    </radialGradient>
    <filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
      <feDropShadow dx="0" dy="4" stdDeviation="4" flood-color="#000" flood-opacity="0.2"/>
    </filter>
  </defs>
  
  <!-- Floating effect with shadow -->
  <ellipse cx="150" cy="280" rx="60" ry="10" fill="rgba(0,0,0,0.1)" filter="url(#shadow)"/>
  
  <!-- Teacup -->
  <g transform="translate(150, 150)">
    <path d="M-80,0 
             C-80,-60 -40,-100 0,-100 
             C40,-100 80,-60 80,0 
             C80,20 70,40 50,50 
             H-50 
             C-70,40 -80,20 -80,0 Z" fill="url(#cupGradient)" stroke="#555" stroke-width="2"/>
    <!-- Handle -->
    <path d="M80,0 
             C100,20 100,40 80,50" 
          fill="none" stroke="#555" stroke-width="4" />
    <!-- Clock face -->
    <circle cx="0" cy="-20" r="40" fill="url(#clockGradient)" stroke="#333" stroke-width="2"/>
    <!-- Clock numbers -->
    <g fill="#333" font-size="8" text-anchor="middle" font-family="Arial">
      <text x="0" y="-30">12</text>
      <text x="28" y="-20">3</text>
      <text x="0" y="-10">6</text>
      <text x="-28" y="-20">9</text>
    </g>
    <!-- Mismatched clock hands -->
    <!-- Hour hand -->
    <line x1="0" y1="-20" x2="0" y2="-10" stroke="#333" stroke-width="4" stroke-linecap="round"/>
    <!-- Minute hand -->
    <line x1="0" y1="-20" x2="15" y2="-25" stroke="#FF5733" stroke-width="2" stroke-linecap="round"/>
    <!-- Center dot -->
    <circle cx="0" cy="-20" r="2" fill="#333"/>
  </g>
  
  <!-- Steam -->
  <path d="M60,80 
           C70,60 80,60 90,80 
           C100,60 110,60 120,80 
           C130,60 140,60 150,80" 
        stroke="url(#cupGradient)" stroke-width="2" fill="none" opacity="0.6"/>
  
  <!-- Decorative patterns -->
  <pattern id="dots" patternUnits="userSpaceOnUse" width="10" height="10">
    <circle cx="5" cy="5" r="2" fill="#FFF"/>
  </pattern>
  <rect x="0" y="150" width="300" height="150" fill="url(#dots)" opacity="0.3"/>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="cupGradient">
      <stop offset="0%" stop-color="#FFD700" />
      <stop offset="100%" stop-color="#FFA500" />
    </linearGradient>
    <linearGradient id="clockGradient">
      <stop offset="0%" stop-color="#333333" />
      <stop offset="100%" stop-color="#666666" />
    </linearGradient>
    <pattern id="splatter" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse">
      <circle cx="25" cy="25" r="5" fill="#FF6B6B" opacity="0.5"/>
      <circle cx="10" cy="10" r="3" fill="#FFD700" opacity="0.5"/>
      <circle cx="40" cy="30" r="4" fill="#FF6B6B" opacity="0.5"/>
    </pattern>
  </defs>
  <g transform="translate(150,150)">
    <!-- Teacup -->
    <path d="M0,100 Q50,150 100,100 Q150,50 200,100 Q150,150 100,200 Q50,150 0,100" fill="url(#cupGradient)" stroke="#FFD700" stroke-width="2"/>
    <circle cx="0" cy="100" r="80" fill="#FFFFFF"/>
    <circle cx="0" cy="100" r="100" fill="#FFFFFF" opacity="0.5"/>
    <rect x="-60" y="120" width="120" height="20" rx="10" fill="#FFE4C4"/>
    
    <!-- Clock -->
    <circle cx="0" cy="0" r="80" fill="none" stroke="none"/>
    <circle cx="0" cy="0" r="75" fill="url(#clockGradient)" stroke="#FFFFFF" stroke-width="2"/>
    
    <!-- Clock Hands -->
    <rect x="-2" y="-75" width="4" height="75" fill="#FF6B6B" transform="rotate(45)"/>
    <rect x="-2" y="-75" width="4" height="75" fill="#FFD700" transform="rotate(-30)"/>
    <rect x="-2" y="-75" width="4" height="75" fill="#FF6B6B" transform="rotate(10)"/>
    
    <!-- Numbers -->
    <text x="-70" y="-50" font-size="15" fill="#FFFFFF" font-family="Arial, sans-serif">12</text>
    <text x="65" y="5" font-size="15" fill="#FFFFFF" font-family="Arial, sans-serif">3</text>
    <text x="65" y="95" font-size="15" fill="#FFFFFF" font-family="Arial, sans-serif">9</text>
    <text x="-70" y="95" font-size="15" fill="#FFFFFF" font-family="Arial, sans-serif">6</text>
    
    <!-- Floating Elements -->
    <rect x="-100" y="-100" width="200" height="200" rx="100" fill="#FFFFFF" opacity="0.1"/>
    <rect x="-80" y="-80" width="160" height="160" rx="80" fill="#FFFFFF" opacity="0.1"/>
    <rect x="-60" y="-60" width="120" height="120" rx="60" fill="#FFFFFF" opacity="0.1"/>
    
    <!-- Decorative Splatters -->
    <rect x="-100" y="-100" width="200" height="200" fill="url(#splatter)"/>
    
    <!-- Steam -->
    <path d="M-50,150 Q-25,120 0,100" stroke="#808080" stroke-width="2" opacity="0.5"/>
    <path d="M50,150 Q25,120 0,100" stroke="#808080" stroke-width="2" opacity="0.5"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Qwen-32B Player 2

Judge's Analysis

    Player 2's submission shows a higher level of creativity and adherence to the prompt, featuring a clock with clearly mismatched hands and a more elaborate and visually appealing teacup design.

    The use of colors and patterns enhances the whimsical nature of the concept, providing a more engaging visual experience.

    In contrast, Player 1's image is simpler and less detailed, with a more subdued interpretation of 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
10
Player 2
18
Rectangles

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

Player 1
1
Player 2
8
Circles

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

Player 1
3
Player 2
7
Ellipses

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

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

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

Player 1
2
Player 2
1

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

The number of elements with stroke attributes in the SVG.

Player 1
6
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
9

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