Back

SVG Drawing Match #832

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clock made of melting candy, dripping onto a fluffy cloud below"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="candyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#FF69B4;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FF1493;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="cloudGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#FFFFFF;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFB3BA;stop-opacity:0.5" />
    </linearGradient>
  </defs>

  <rect width="300" height="300" fill="url(#candyGradient)" rx="20" />
  
  <!-- Fluffy Cloud -->
  <path d="M150,200 Q220,180 250,160 Q280,140 220,120 Q160,140 100,160 Q80,180 150,200Z" 
        fill="url(#cloudGradient)" opacity="0.8" blur="5px" />
  
  <!-- Melting Candy Clock -->
  <g transform="translate(150,150)">
    <!-- Candy Body -->
    <circle r="60" fill="url(#candyGradient)" />
    <!-- Drips -->
    <path d="M0,60 Q-20,80 -40,100" stroke="#FF69B4" fill="none" stroke-width="4" />
    <path d="M20,60 Q0,80 -20,100" stroke="#FF69B4" fill="none" stroke-width="4" />
    <path d="M-10,60 Q-30,70 -40,80" stroke="#FF69B4" fill="none" stroke-width="4" />
    
    <!-- Clock Hands -->
    <rect x="-5" y="40" width="10" height="60" fill="white" rx="2" />
    <rect x="40" y="-5" width="60" height="10" fill="white" rx="2" />
    
    <!-- Center -->
    <circle r="10" fill="url(#candyGradient)" />
  </g>

  <!-- Dripping Candy -->
  <ellipse cx="150" cy="170" rx="8" ry="12" fill="url(#candyGradient)" blur="3px" />
  <ellipse cx="120" cy="180" rx="6" ry="10" fill="url(#candyGradient)" blur="3px" />
  <ellipse cx="180" cy="180" rx="6" ry="10" fill="url(#candyGradient)" blur="3px" />
  <ellipse cx="150" cy="190" rx="5" ry="8" fill="url(#candyGradient)" blur="3px" />

  <!-- Cloud Splatters -->
  <path d="M200,240 Q220,250 200,260 Q180,250 200,240Z" fill="white" blur="3px" opacity="0.3" />
  <path d="M100,240 Q120,250 100,260 Q80,250 100,240Z" fill="white" blur="3px" opacity="0.3" />
</svg>
SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Cloud -->
  <circle cx="150" cy="250" r="100" fill="#fff" fill-opacity="0.8" />
  <circle cx="150" cy="250" r="90" fill="#fff" fill-opacity="0.6" />
  <circle cx="150" cy="250" r="80" fill="#fff" fill-opacity="0.4" />
  <circle cx="150" cy="250" r="70" fill="#fff" fill-opacity="0.2" />
  
  <!-- Clock -->
  <g transform="translate(150, 150)">
    <!-- Clock Face -->
    <circle cx="0" cy="0" r="60" fill="#ffd7be" />
    <circle cx="0" cy="0" r="50" fill="#fff" />
    <circle cx="0" cy="0" r="40" fill="#ffd7be" />
    
    <!-- Melting Candy -->
    <path d="M 0 0 L -20 -40 Q -30 -60 -40 -60 L -60 -60 Q -70 -60 -80 -50 L -80 -40 Q -80 -30 -70 -20 L -60 -20 Q -50 -20 -40 -30 L -40 -40 Q -30 -40 -20 -30 Z" fill="#ff69b4" />
    <path d="M 0 0 L 20 -40 Q 30 -60 40 -60 L 60 -60 Q 70 -60 80 -50 L 80 -40 Q 80 -30 70 -20 L 60 -20 Q 50 -20 40 -30 L 40 -40 Q 30 -40 20 -30 Z" fill="#ffb6c1" />
    <path d="M -40 -60 L -30 -80 Q -20 -90 -10 -90 L 10 -90 Q 20 -90 30 -80 L 40 -60" fill="#ffd7be" />
    <path d="M -60 -60 L -70 -80 Q -80 -90 -90 -90 L -90 -100 Q -90 -110 -80 -120 L -70 -120 Q -60 -120 -50 -110 L -50 -100" fill="#ff69b4" />
    <path d="M 40 -60 L 50 -80 Q 60 -90 70 -90 L 80 -90 Q 90 -90 100 -80 L 110 -60" fill="#ffb6c1" />
    <path d="M 60 -60 L 70 -80 Q 80 -90 90 -90 L 100 -90 Q 110 -90 120 -80 L 130 -60" fill="#ffd7be" />
    
    <!-- Clock Hands -->
    <line x1="0" y1="0" x2="-30" y2="-50" stroke="#333" stroke-width="4" />
    <line x1="0" y1="0" x2="30" y2="-50" stroke="#333" stroke-width="2" />
  </g>
  
  <!-- Drips -->
  <circle cx="120" cy="220" r="5" fill="#ff69b4" />
  <circle cx="180" cy="230" r="5" fill="#ffb6c1" />
  <circle cx="140" cy="240" r="5" fill="#ffd7be" />
  <circle cx="160" cy="250" r="5" fill="#ff69b4" />
  <circle cx="120" cy="260" r="5" fill="#ffb6c1" />
  <circle cx="180" cy="270" r="5" fill="#ffd7be" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.0 70B (8192) Player 2

Judge's Analysis

    Player 2's submission better captures the prompt with a clearer depiction of a clock face and the melting candy effect dripping onto a fluffy cloud shape.

    The use of colors and shapes is more defined and visually distinct, enhancing the visual appeal and creativity.

    Player 1's image, while interesting, lacks clarity in representing the concept of a clock and melting candy.

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
15
Player 2
21
Rectangles

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

Player 1
3
Player 2
Circles

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

Player 1
2
Player 2
13
Ellipses

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

Player 1
4
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
Paths

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

Player 1
6
Player 2
6
Groups

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

Player 1
1
Player 2
1

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
2
Player 2
5

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
1

Complexity Metrics

Path Commands

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

Player 1
20
Player 2
50
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
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
Player 2

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