Back

SVG Drawing Match #327

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clock face made of melting candies"

SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <title>Melting Candy Clock</title>
  <defs>
    <radialGradient id="clockGrad" cx="150" cy="150" r="140">
      <stop offset="0%" stop-color="#3D2B1F"/>
      <stop offset="100%" stop-color="#6F4E37"/>
    </radialGradient>
    <linearGradient id="meltGrad1" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#FF69B4"/>
      <stop offset="100%" stop-color="#FFB6C1"/>
    </linearGradient>
    <linearGradient id="meltGrad2" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#4169E1"/>
      <stop offset="100%" stop-color="#87CEEB"/>
    </linearGradient>
    <linearGradient id="meltGrad3" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="100%" stop-color="#FFE4C4"/>
    </linearGradient>
  </defs>
  <circle cx="150" cy="150" r="140" fill="url(#clockGrad)"/>
  <g id="melting">
    <path d="M100,150 Q150,100 200,150 Q150,200 100,150" fill="url(#meltGrad1)" opacity="0.8"/>
    <path d="M130,120 Q160,80 190,120 Q160,160 130,120" fill="url(#meltGrad2)" opacity="0.8"/>
    <path d="M120,140 Q150,110 180,140 Q150,170 120,140" fill="url(#meltGrad3)" opacity="0.8"/>
  </g>
  <g id="clock-elements">
    <circle cx="150" cy="150" r="120" fill="none" stroke="#FFFFFF" stroke-width="2"/>
    <g id="hours">
      <circle cx="150" cy="150" r="100" fill="none"/>
      <g transform="rotate(30 150 150)">
        <rect x="135" y="140" width="30" height="10" rx="5" fill="url(#meltGrad1)"/>
      </g>
      <g transform="rotate(90 150 150)">
        <rect x="135" y="140" width="30" height="10" rx="5" fill="url(#meltGrad2)"/>
      </g>
      <g transform="rotate(150 150 150)">
        <rect x="135" y="140" width="30" height="10" rx="5" fill="url(#meltGrad3)"/>
      </g>
    </g>
    <rect x="140" y="145" width="20" height="10" rx="5" transform="rotate(60 150 150)" fill="url(#meltGrad1)"/>
    <rect x="140" y="145" width="20" height="10" rx="5" transform="rotate(180 150 150)" fill="url(#meltGrad2)"/>
    <rect x="140" y="145" width="20" height="10" rx="5" transform="rotate(300 150 150)" fill="url(#meltGrad3)"/>
    <rect x="145" y="148" width="10" height="4" rx="2" transform="rotate(0 150 150)" fill="#FF6B6B"/>
    <rect x="145" y="148" width="10" height="4" rx="2" transform="rotate(90 150 150)" fill="#4ECDC4"/>
    <rect x="145" y="148" width="10" height="4" rx="2" transform="rotate(180 150 150)" fill="#FFD700"/>
    <animate xlink:href="#melting" attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="10s" repeatCount="indefinite"/>
  </g>
</svg>
SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <radialGradient id="candyGradient1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#FF9A8B;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FF6B6B;stop-opacity:1" />
    </radialGradient>
    <radialGradient id="candyGradient2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFA500;stop-opacity:1" />
    </radialGradient>
    <radialGradient id="candyGradient3" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#A8E6CF;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#DCEDC8;stop-opacity:1" />
    </radialGradient>
    <pattern id="candyPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="8" fill="url(#candyGradient1)" />
      <circle cx="10" cy="10" r="5" fill="url(#candyGradient2)" />
      <circle cx="10" cy="10" r="2" fill="url(#candyGradient3)" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="#FFE4E1" />
  <circle cx="150" cy="150" r="120" fill="url(#candyPattern)" />
  <g transform="translate(150, 150)">
    <line y1="-80" y2="-30" stroke="#6B5B95" stroke-width="6" stroke-linecap="round" />
    <line y1="-90" y2="10" stroke="#6B5B95" stroke-width="4" stroke-linecap="round" transform="rotate(30)" />
    <line y1="-90" y2="10" stroke="#6B5B95" stroke-width="4" stroke-linecap="round" transform="rotate(60)" />
    <line y1="-90" y2="10" stroke="#6B5B95" stroke-width="4" stroke-linecap="round" transform="rotate(90)" />
    <line y1="-90" y2="10" stroke="#6B5B95" stroke-width="4" stroke-linecap="round" transform="rotate(120)" />
    <line y1="-90" y2="10" stroke="#6B5B95" stroke-width="4" stroke-linecap="round" transform="rotate(150)" />
    <line y1="-90" y2="10" stroke="#6B5B95" stroke-width="4" stroke-linecap="round" transform="rotate(180)" />
    <line y1="-90" y2="10" stroke="#6B5B95" stroke-width="4" stroke-linecap="round" transform="rotate(210)" />
    <line y1="-90" y2="10" stroke="#6B5B95" stroke-width="4" stroke-linecap="round" transform="rotate(240)" />
    <line y1="-90" y2="10" stroke="#6B5B95" stroke-width="4" stroke-linecap="round" transform="rotate(270)" />
    <line y1="-90" y2="10" stroke="#6B5B95" stroke-width="4" stroke-linecap="round" transform="rotate(300)" />
    <line y1="-90" y2="10" stroke="#6B5B95" stroke-width="4" stroke-linecap="round" transform="rotate(330)" />
    <g transform="rotate(45)">
      <path d="M0,-90 L10,10 L-10,10 Z" fill="#FF6B6B" />
    </g>
    <g transform="rotate(135)">
      <path d="M0,-90 L10,10 L-10,10 Z" fill="#FFD700" />
    </g>
    <g transform="rotate(225)">
      <path d="M0,-90 L10,10 L-10,10 Z" fill="#A8E6CF" />
    </g>
    <g transform="rotate(315)">
      <path d="M0,-90 L10,10 L-10,10 Z" fill="#FF9A8B" />
    </g>
  </g>
  <g transform="translate(150, 150)">
    <circle cx="0" cy="0" r="10" fill="#6B5B95" />
    <path d="M0,-80 L5,-85 L-5,-85 Z" fill="#6B5B95" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek V3 Player 2

Judge's Analysis

    Player 2's submission more effectively captures the concept of a 'clock face made of melting candies' with its vibrant use of colors and dynamic design that suggests melting.

    The arrangement of elements resembles a clock face and conveys a playful, candy-like appearance.

    In contrast, Player 1's submission lacks clear representation of either a clock face or melting candies, making it less aligned with 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
15
Player 2
23
Rectangles

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

Player 1
9
Player 2
1
Circles

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

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

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

Player 1
6
Player 2
6

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
12

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
6

Interactivity Metrics

Animations

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

Player 1
1
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
9
Player 2
17

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
20
Max Group Nesting

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

Player 1
2
Player 2
1
Defs Elements

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

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