Back

SVG Drawing Match #1241

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal clock melting over a cactus in desert, vibrant colors, geometric style"

SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="meltingClockGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#FFD700" />
      <stop offset="50%" stop-color="#FFA500" />
      <stop offset="100%" stop-color="#FF4500" />
    </linearGradient>
    <pattern id="cactusTexture" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="20" height="20" fill="#008000" />
      <circle cx="5" cy="5" r="2" fill="#006400" />
      <circle cx="15" cy="10" r="2" fill="#006400" />
      <circle cx="8" cy="16" r="2" fill="#006400" />
    </pattern>
  </defs>
  <g transform="translate(150, 150)">
    <path d="M-50 100 L-25 50 L0 75 L25 50 L50 100 Z" fill="url(#cactusTexture)" stroke="#004d00" stroke-width="2" />
    <ellipse cx="0" cy="150" rx="20" ry="30" fill="url(#cactusTexture)" stroke="#004d00" stroke-width="2" transform="rotate(-15)" />
    <ellipse cx="-30" cy="120" rx="15" ry="25" fill="url(#cactusTexture)" stroke="#004d00" stroke-width="2" transform="rotate(10)" />
  </g>
  <g transform="translate(150,70)">
    <path d="M-50,0 A50,50 0 0,1 50,0 A50,70 0 0,0 -50,0" fill="url(#meltingClockGradient)" stroke="#000" stroke-width="2" filter="url(#blurFilter)">
      <animateTransform attributeName="transform" type="rotate" from="0 150 70" to="360 150 70" dur="60s" repeatCount="indefinite"/>
    </path>
    <circle cx="-20" cy="-20" r="5" fill="#000"/>
    <circle cx="20" cy="-20" r="5" fill="#000"/>
    <polygon points="0,-30 -5,-50 5,-50" fill="#000"/>
  </g>
  <filter id="blurFilter">
    <feGaussianBlur stdDeviation="2" />
  </filter>
  <rect x="0" y="200" width="300" height="100" fill="#FFDAB9" />
  <ellipse cx="50" cy="250" rx="10" ry="5" fill="#8B4513"/>
  <ellipse cx="250" cy="270" rx="15" ry="7" fill="#8B4513"/>
</svg>
SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Desert background -->
  <rect x="0" y="0" width="300" height="300" fill="#F7DC6F" rx="20" />
  <defs>
    <!-- Gradient for clock melting effect -->
    <linearGradient id="melt-gradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#FF69B4" stop-opacity="1" />
      <stop offset="100%" stop-color="#FFB6C1" stop-opacity="0.5" />
    </linearGradient>
    <!-- Pattern for cactus -->
    <pattern id="cactus-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="10" height="20" fill="#8BC34A" />
      <rect x="10" y="0" width="10" height="20" fill="#C6E2B5" />
    </pattern>
  </defs>
  <!-- Cactus -->
  <rect x="150" y="200" width="50" height="100" fill="url(#cactus-pattern)" rx="10" />
  <circle cx="175" cy="220" r="20" fill="#32CD32" />
  <!-- Melting clock -->
  <path d="M 150 50 A 50 50 0 0 1 200 50" stroke="url(#melt-gradient)" stroke-width="10" fill="none" />
  <circle cx="175" cy="50" r="40" fill="none" stroke="#FFC0CB" stroke-width="10" />
  <path d="M 200 50 A 50 50 0 0 1 250 50" stroke="url(#melt-gradient)" stroke-width="10" fill="none" />
  <!-- Melting clock details -->
  <circle cx="220" cy="60" r="10" fill="#FF69B4" />
  <line x1="220" y1="50" x2="220" y2="70" stroke="#FF69B4" stroke-width="5" />
  <text x="230" y="70" font-size="12" fill="#FF69B4" text-anchor="middle" dominant-baseline="middle">12</text>
  <text x="210" y="80" font-size="12" fill="#FF69B4" text-anchor="middle" dominant-baseline="middle">3</text>
  <text x="240" y="80" font-size="12" fill="#FF69B4" text-anchor="middle" dominant-baseline="middle">9</text>
  <!-- Shadows and depth -->
  <rect x="0" y="0" width="300" height="300" fill="none" rx="20" filter="url(#shadow)" />
  <defs>
    <filter id="shadow" x="0" y="0" width="200%" height="200%">
      <feOffset dx="-10" dy="10" />
      <feGaussianBlur stdDeviation="5" result="blur" />
      <feColorMatrix values="0 0 0 0 0, 0 0 0 0 0, 0 0 0 0 0, 0 0 0 0.5 0" />
    </filter>
  </defs>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.1 405B Instruct Player 2

Judge's Analysis

    Player 2's image captures the surreal concept of a melting clock over a cactus with a geometric style more effectively.

    The use of vibrant colors and clear geometric shapes creates visual interest and adherence to the prompt.

    In contrast, Player 1's submission lacks clarity and detail, making it less visually appealing and harder to interpret as a melting clock over a cactus.

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

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

Player 1
2
Player 2
5
Circles

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

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

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

Player 1
1
Player 2
Paths

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

Player 1
2
Player 2
2
Groups

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

Player 1
2
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
7

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

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
4
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
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
3

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