Back

SVG Drawing Match #651

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cactus wearing a top hat and monocle under a disco ball in the desert"

SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="disco-ball" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#fff" />
      <stop offset="100%" stop-color="#eee" />
    </radialGradient>
    <pattern id="desert-sand" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect width="20" height="20" fill="#f7d9a8" />
      <circle cx="10" cy="10" r="3" fill="#e9c478" />
    </pattern>
  </defs>

  <rect width="300" height="200" fill="url(#desert-sand)" />
  <ellipse cx="150" cy="100" rx="40" ry="30" fill="url(#disco-ball)" />
  <polygon points="120,130 180,130 150,200" fill="#008000" />
  <ellipse cx="135,150" rx="10" ry="15" fill="#006400"/>
  <ellipse cx="165,150" rx="10" ry="15" fill="#006400"/>
  <ellipse cx="150" cy="140" rx="25" ry="10" fill="black" />
  <circle cx="140" cy="135" r="5" fill="white" /> 
  <ellipse cx="150" cy="210" rx="20" ry="5" fill="#a0522d"/>
   <path d="M120 215 C 130 225, 170 225, 180 215" stroke="#a0522d" stroke-width="5" fill="none"/>
  <path d="M120 220 L 120 250 C 130 230, 170 230, 180 250 L 180 220" fill="#a0522d" />
  <rect x="140" y="110" width="20" height="15" fill="black"/>
  <rect x="130" y="100" width="40" height="10" fill="black"/>

</svg>
SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="discoShine" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:white"/>
      <stop offset="100%" style="stop-color:silver"/>
    </radialGradient>
    <pattern id="discoPatch" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect width="5" height="5" fill="silver"/>
      <rect x="5" y="5" width="5" height="5" fill="silver"/>
    </pattern>
  </defs>
  
  <!-- Desert Background -->
  <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
    <stop offset="0%" style="stop-color:#FF8C42"/>
    <stop offset="100%" style="stop-color:#FFC75F"/>
  </linearGradient>
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
  
  <!-- Sand Dunes -->
  <path d="M0 200 Q75 150 150 200 T300 200 L300 300 L0 300 Z" fill="#FFD700"/>
  
  <!-- Disco Ball -->
  <circle cx="150" cy="60" r="30" fill="url(#discoPatch)"/>
  <circle cx="150" cy="60" r="30" fill="url(#discoShine)" opacity="0.5"/>
  
  <!-- Light Beams -->
  <g opacity="0.3">
    <path d="M120 60 L80 120" stroke="white" stroke-width="2"/>
    <path d="M180 60 L220 120" stroke="white" stroke-width="2"/>
    <path d="M150 90 L150 140" stroke="white" stroke-width="2"/>
  </g>
  
  <!-- Cactus Body -->
  <path d="M140 180 C140 160 140 140 140 120 Q140 100 150 100 Q160 100 160 120 C160 140 160 160 160 180 Z" fill="#2E8B57"/>
  <path d="M160 150 L180 130 Q185 125 180 120 L160 140" fill="#2E8B57"/>
  <path d="M140 160 L120 140 Q115 135 120 130 L140 150" fill="#2E8B57"/>
  
  <!-- Top Hat -->
  <rect x="130" y="70" width="40" height="10" fill="black"/>
  <rect x="135" y="40" width="30" height="30" fill="black"/>
  <rect x="135" y="65" width="30" height="5" fill="#880000"/>
  
  <!-- Monocle -->
  <circle cx="165" cy="110" r="8" fill="none" stroke="gold" stroke-width="2"/>
  <line x1="165" y1="118" x2="165" y2="125" stroke="gold" stroke-width="2"/>
  
  <!-- Cactus Details -->
  <circle cx="145" cy="110" r="2" fill="black"/>
  <path d="M150 130 Q155 135 150 140" fill="none" stroke="#236B45" stroke-width="2"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 2

Judge's Analysis

    Player 2's image more clearly adheres to the prompt, depicting a recognizable cactus character wearing a top hat and monocle under a disco ball in a desert setting.

    The composition is clear and visually appealing, with a bright background that enhances the desert theme.

    Player 1's image is more abstract and less recognizable, making it harder to identify the elements described in 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
14
Player 2
19
Rectangles

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

Player 1
4
Player 2
6
Circles

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

Player 1
2
Player 2
4
Ellipses

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

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

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

Player 1
Player 2
1

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
8

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

Complexity Metrics

Path Commands

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

Player 1
6
Player 2
28
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
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