Back

SVG Drawing Match #1724

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Melting clock with butterfly wings on a desert cactus"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Desert background -->
  <rect x="0" y="0" width="300" height="300" fill="#FFD700" />
  
  <!-- Sun -->
  <circle cx="250" cy="50" r="30" fill="#FDB813" />
  
  <!-- Cactus -->
  <path d="M150 200 L130 100 L170 100 Z" fill="#8B4513" />
  <circle cx="150" cy="100" r="20" fill="#228B22" />
  <rect x="143" y="100" width="14" height="60" fill="#8B4513" />
  
  <!-- Clock -->
  <ellipse cx="150" cy="150" rx="70" ry="100" fill="#A9A9A9" />
  <circle cx="150" cy="150" r="5" fill="#000" />
  
  <!-- Clock melting effect -->
  <path d="M80 150 Q150 20 220 150" fill="none" stroke="#000" stroke-width="4" />
  <path d="M80 150 Q150 280 220 150" fill="none" stroke="#000" stroke-width="4" />
  
  <!-- Butterfly wings -->
  <path d="M100 180 Q130 140 160 180 Q190 220 220 180 Z" fill="#EE82EE" />
  <path d="M100 180 Q130 220 160 180 Q190 140 220 180 Z" fill="#EE82EE" />
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background with gradient desert sky -->
  <rect width="300" height="300" fill="url(#desert-sky)"/>
  
  <!-- Desert ground -->
  <rect x="0" y="240" width="300" height="60" fill="#654321"/>
  
  <!-- Cactus base -->
  <path d="M150 240, v-100, w-40-20, l-40-20, l-40 20, l-40-20, l40-20, l40 20, l40-20, l-40-20, l-40 20" fill="#00cc33"/>
  
  <!-- Melting clock body -->
  <path d="M150 150, v-50, h-50, v50, h50, v-50, h50, v50" fill="#gold" transform="skewX(20) skewY(10)"/>
  
  <!-- Clock dial with pattern overlay -->
  <circle cx="150" cy="150" r="25" fill="#gold" stroke="#333" stroke-width="2"/>
  <path d="M140 150, l-10-10, l10-10, l10 10, l-10 10" fill="#333" transform="rotate(30 150 150)"
        opacity="0.5"/>
  
  <!-- Butterfly wings -->
  <ellipse cx="150" cy="120" rx="40" ry="20" fill="url(#wing-gradient)"/>
  <ellipse cx="150" cy="120" rx="40" ry="20" fill="url(#wing-gradient)" transform="scale(-1 1) translate(-60 0)"/>
  
  <!-- Abstract melting effect -->
  <path d="M150 150, q50 50 50 100, t50 -50 100 50, t50 50 100 -50, q50 -50 50 -100, t-50 -50 -100 -50, t-50 50 -100 50, q-50 50 -50 100, t-50 50 -100 -50, t-50 -50 -100 -50, q-50 -50 -50 -100, t50 -50 -100 -50, t50 50 -100 -50" fill="url(#melt-gradient)"/>
  
  <!-- Gradient definitions -->
  <defs>
    <linearGradient id="desert-sky" x1="0" y1="0" x2="0" y2="300" gradientUnits="userSpaceOnUse">
      <stop offset="0.2" color="#ff6b35" stop-opacity="0.8"/>
      <stop offset="0.8" color="#4d4d4d" stop-opacity="0.8"/>
    </linearGradient>
    <radialGradient id="wing-gradient" cx="150" cy="120" rx="40" ry="20" gradientUnits="userSpaceOnUse">
      <stop offset="0.1" color="#ff3366" stop-opacity="0.9"/>
      <stop offset="0.9" color="#3366ff" stop-opacity="0.9"/>
    </radialGradient>
    <radialGradient id="melt-gradient" cx="150" cy="150" rx="50" ry="50" gradientUnits="userSpaceOnUse">
      <stop offset="0.1" color="#gold" stop-opacity="0.9"/>
      <stop offset="0.9" color="#333" stop-opacity="0.3"/>
    </radialGradient>
  </defs>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-3.5 turbo (0125) Player 1

Judge's Analysis

    Player 1's submission creatively incorporates the prompt elements with a melting clock and butterfly-like forms on a desert background, represented by the yellow backdrop and circular sun.

    The design is colorful and abstract, contributing to its visual appeal.

    Player 2's submission lacks clarity and fails to effectively combine the elements of the prompt in a visually engaging manner.

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

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

Player 1
2
Player 2
2
Circles

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

Player 1
3
Player 2
1
Ellipses

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

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

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

Player 1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
3

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

Complexity Metrics

Path Commands

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

Player 1
16
Player 2
37
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
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
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