Back

SVG Drawing Match #2719

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cactus wearing sunglasses under a disco ball in the desert at night."

SVG by GPT-4.1 nano (2025-04-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background: Night desert sky with stars -->
  <defs>
    <radialGradient id="skyGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#0d1b2a"/>
      <stop offset="100%" stop-color="#000518"/>
    </radialGradient>
    <!-- Gradient for the disco ball -->
    <linearGradient id="discoGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="20%" stop-color="#ffe100"/>
      <stop offset="40%" stop-color="#00ffe1"/>
      <stop offset="60%" stop-color="#ff00e1"/>
      <stop offset="80%" stop-color="#ffffff"/>
    </linearGradient>
    <!-- Gradient for cactus -->
    <linearGradient id="cactusGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#376228"/>
      <stop offset="100%" stop-color="#264d1a"/>
    </linearGradient>
    <!-- Gradient for sunglasses -->
    <linearGradient id="sunglassesGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#222"/>
      <stop offset="100%" stop-color="#555"/>
    </linearGradient>
  </defs>
  
  <!-- Night Sky -->
  <rect width="300" height="300" fill="url(#skyGradient)" />

  <!-- Stars -->
  <g fill="white" opacity="0.8">
    <circle cx="30" cy="50" r="1.5"/>
    <circle cx="80" cy="80" r="1"/>
    <circle cx="150" cy="40" r="2"/>
    <circle cx="220" cy="70" r="1.2"/>
    <circle cx="270" cy="30" r="1.8"/>
    <circle cx="60" cy="150" r="1.3"/>
    <circle cx="200" cy="130" r="1.5"/>
    <circle cx="120" cy="200" r="1.1"/>
    <circle cx="260" cy="180" r="2"/>
    <circle cx="50" cy="250" r="1.4"/>
  </g>
  
  <!-- Disco Ball -->
  <circle cx="150" cy="80" r="50" fill="url(#discoGradient)" stroke="#ccc" stroke-width="2"/>
  <!-- Disco ball facets -->
  <g stroke="#999" stroke-width="1">
    <!-- Horizontal lines -->
    <line x1="100" y1="80" x2="200" y2="80"/>
    <line x1="100" y1="130" x2="200" y2="130"/>
    <line x1="100" y1="180" x2="200" y2="180"/>
    <!-- Vertical lines -->
    <line x1="150" y1="30" x2="150" y2="130"/>
    <line x1="130" y1="55" x2="170" y2="105"/>
    <line x1="130" y1="105" x2="170" y2="55"/>
    <line x1="130" y1="185" x2="170" y2="185"/>
    <line x1="130" y1="135" x2="170" y2="135"/>
  </g>
  <!-- Shine effect on disco ball -->
  <ellipse cx="150" cy="70" rx="30" ry="10" fill="#fff" opacity="0.2"/>
  
  <!-- Cactus Body -->
  <g fill="url(#cactusGradient)">
    <!-- Main stem -->
    <path d="M150,220 Q140,200 150,180 Q160,200 150,220" stroke="none"/>
    <path d="M150,220 Q165,210 170,195 Q165,190 150,180 Q135,190 130,195 Q135,210 150,220" stroke="none"/>
  </g>
  <!-- Cactus arms -->
  <path d="M150,200 Q130,190 125,170 Q120,150 125,130 Q130,150 150,150 Q170,150 175,130 Q180,150 175,170 Q170,190 150,200" fill="url(#cactusGradient)" stroke="none"/>
  <path d="M150,180 Q140,165 135,150 Q130,135 125,130" fill="url(#cactusGradient)" stroke="none"/>
  <path d="M150,180 Q160,165 165,150 Q170,135 175,130" fill="url(#cactusGradient)" stroke="none"/>
  
  <!-- Cactus sunglasses -->
  <g fill="none" stroke="url(#sunglassesGradient)" stroke-width="4">
    <!-- Left lens -->
    <ellipse cx="135" cy="150" rx="15" ry="10" fill="#222"/>
    <!-- Right lens -->
    <ellipse cx="165" cy="150" rx="15" ry="10" fill="#222"/>
    <!-- Bridge -->
    <line x1="150" y1="150" x2="150" y2="150" stroke="#555" stroke-width="2"/>
  </g>
  
  <!-- Cactus mouth (smile) to add character -->
  <path d="M140,165 Q150,175 160,165" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round"/>
  
  <!-- Ground with desert hue -->
  <ellipse cx="150" cy="290" rx="140" ry="10" fill="#e2b871"/>
</svg>
SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background - Night Sky -->
  <defs>
    <radialGradient id="skyGradient" cx="50%" cy="0%" r="100%" fx="50%" fy="0%">
      <stop offset="0%" stop-color="#0a0a4a" />
      <stop offset="85%" stop-color="#06021c" />
    </radialGradient>
    
    <radialGradient id="moonGlow" cx="50%" cy="50%" r="50%" fx="40%" fy="40%">
      <stop offset="0%" stop-color="#fffce6" />
      <stop offset="100%" stop-color="#f9f4d0" stop-opacity="0" />
    </radialGradient>
    
    <linearGradient id="desertGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#4d2e00" />
      <stop offset="100%" stop-color="#261700" />
    </linearGradient>
    
    <linearGradient id="cactusGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#0a5c36" />
      <stop offset="50%" stop-color="#0e7a48" />
      <stop offset="100%" stop-color="#0a5c36" />
    </linearGradient>
    
    <linearGradient id="discoBallGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#f0f0f0" />
      <stop offset="50%" stop-color="#a0a0a0" />
      <stop offset="100%" stop-color="#d8d8d8" />
    </linearGradient>
    
    <filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="4" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
    
    <pattern id="discoPattern" patternUnits="userSpaceOnUse" width="10" height="10" patternTransform="rotate(45)">
      <rect width="5" height="5" fill="#d8d8d8" />
      <rect x="5" y="5" width="5" height="5" fill="#a0a0a0" />
    </pattern>
  </defs>
  
  <!-- Night Sky Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Stars -->
  <g id="stars">
    <circle cx="30" cy="40" r="1" fill="white" opacity="0.8" />
    <circle cx="60" cy="20" r="0.8" fill="white" opacity="0.7" />
    <circle cx="100" cy="50" r="1.2" fill="white" opacity="0.9" />
    <circle cx="140" cy="30" r="0.7" fill="white" opacity="0.8" />
    <circle cx="180" cy="45" r="1" fill="white" opacity="0.7" />
    <circle cx="220" cy="25" r="0.9" fill="white" opacity="0.9" />
    <circle cx="260" cy="55" r="1.1" fill="white" opacity="0.8" />
    <circle cx="40" cy="80" r="0.8" fill="white" opacity="0.7" />
    <circle cx="80" cy="70" r="1" fill="white" opacity="0.8" />
    <circle cx="260" cy="90" r="0.7" fill="white" opacity="0.7" />
    <circle cx="230" cy="70" r="1.2" fill="white" opacity="0.9" />
    <circle cx="190" cy="20" r="0.9" fill="white" opacity="0.8" />
  </g>
  
  <!-- Moon with glow -->
  <circle cx="250" cy="50" r="25" fill="#f9f7e3" />
  <circle cx="250" cy="50" r="35" fill="url(#moonGlow)" opacity="0.6" />
  
  <!-- Desert Ground -->
  <path d="M0,220 Q75,180 150,200 T300,190 L300,300 L0,300 Z" fill="url(#desertGradient)" />
  
  <!-- Small Cacti in Background -->
  <g transform="translate(40,210) scale(0.5)">
    <path d="M10,0 Q10,-20 20,-20 T30,0 L30,50 Q25,55 15,55 T0,50 Z" fill="#084028" />
    <path d="M20,-20 L20,-40 M5,10 L-10,-5 M25,15 L40,0" stroke="#084028" stroke-width="4" />
  </g>
  
  <g transform="translate(240,205) scale(0.6)">
    <path d="M10,0 Q10,-20 20,-20 T30,0 L30,50 Q25,55 15,55 T0,50 Z" fill="#084028" />
    <path d="M20,-20 L20,-40 M5,10 L-10,-5 M25,15 L40,0" stroke="#084028" stroke-width="4" />
  </g>
  
  <!-- Disco Ball with Light Beams -->
  <g transform="translate(150,90)">
    <!-- Light Beams -->
    <g opacity="0.7">
      <path d="M0,30 L-70,150" stroke="#f0e68c" stroke-width="2" opacity="0.5" />
      <path d="M0,30 L-40,170" stroke="#ee82ee" stroke-width="2" opacity="0.5" />
      <path d="M0,30 L0,170" stroke="#ff69b4" stroke-width="2" opacity="0.5" />
      <path d="M0,30 L40,170" stroke="#00bfff" stroke-width="2" opacity="0.5" />
      <path d="M0,30 L70,150" stroke="#7fff00" stroke-width="2" opacity="0.5" />
      <path d="M0,30 L-90,120" stroke="#ff6347" stroke-width="2" opacity="0.5" />
      <path d="M0,30 L90,120" stroke="#9370db" stroke-width="2" opacity="0.5" />
    </g>
    
    <!-- Disco Ball -->
    <circle cx="0" cy="30" r="20" fill="url(#discoPattern)" stroke="#a0a0a0" stroke-width="1" />
    <circle cx="0" cy="30" r="20" fill="url(#discoBallGradient)" opacity="0.3" />
    
    <!-- Disco Ball Reflections -->
    <circle cx="-7" cy="23" r="2" fill="white" opacity="0.8" />
    <circle cx="8" cy="25" r="1.5" fill="white" opacity="0.7" />
    <circle cx="0" cy="35" r="1" fill="white" opacity="0.9" />
    
    <!-- Hanging Wire -->
    <line x1="0" y1="0" x2="0" y2="10" stroke="#888" stroke-width="2" />
  </g>
  
  <!-- Main Cactus -->
  <g transform="translate(150,250)">
    <!-- Cactus Body -->
    <path d="M-30,0 Q-35,-80 -20,-100 T0,-110 T20,-100 T30,0 Z" fill="url(#cactusGradient)" />
    
    <!-- Cactus Arms -->
    <path d="M-20,-60 Q-40,-60 -50,-40 T-45,-20 T-30,-10" fill="url(#cactusGradient)" />
    <path d="M20,-70 Q40,-70 50,-50 T45,-30 T30,-20" fill="url(#cactusGradient)" />
    
    <!-- Cactus Spikes -->
    <g stroke="#d4af37" stroke-width="1">
      <line x1="-28" y1="-90" x2="-33" y2="-95" />
      <line x1="-15" y1="-100" x2="-15" y2="-107" />
      <line x1="0" y1="-105" x2="0" y2="-112" />
      <line x1="15" y1="-100" x2="15" y2="-107" />
      <line x1="28" y1="-90" x2="33" y2="-95" />
      
      <line x1="-32" y1="-70" x2="-38" y2="-73" />
      <line x1="32" y1="-70" x2="38" y2="-73" />
      
      <line x1="-32" y1="-50" x2="-38" y2="-53" />
      <line x1="32" y1="-50" x2="38" y2="-53" />
      
      <line x1="-32" y1="-30" x2="-38" y2="-33" />
      <line x1="32" y1="-30" x2="38" y2="-33" />
      
      <line x1="-45" y1="-40" x2="-52" y2="-42" />
      <line x1="-48" y1="-30" x2="-55" y2="-28" />
      
      <line x1="45" y1="-40" x2="52" y2="-42" />
      <line x1="48" y1="-30" x2="55" y2="-28" />
    </g>
    
    <!-- Cactus Flower -->
    <circle cx="0" cy="-115" r="5" fill="#ff69b4" />
    <circle cx="2" cy="-117" r="1" fill="yellow" />
    <circle cx="-2" cy="-117" r="1" fill="yellow" />
    <circle cx="0" cy="-113" r="1" fill="yellow" />
  </g>
  
  <!-- Sunglasses -->
  <g transform="translate(150,160)">
    <path d="M-30,-10 L30,-10 C35,-10 40,-5 40,0 L40,10 C40,15 35,20 30,20 L-30,20 C-35,20 -40,15 -40,10 L-40,0 C-40,-5 -35,-10 -30,-10 Z" fill="#222" opacity="0.85" />
    <rect x="-35" y="-5" width="25" height="15" rx="7" ry="7" fill="#222" />
    <rect x="10" y="-5" width="25" height="15" rx="7" ry="7" fill="#222" />
    <rect x="-32" y="-2" width="19" height="9" rx="4" ry="4" fill="#5dadec" opacity="0.7" />
    <rect x="13" y="-2" width="19" height="9" rx="4" ry="4" fill="#5dadec" opacity="0.7" />
    <path d="M-10,5 L10,5" stroke="#222" stroke-width="3" />
  </g>
  
  <!-- Desert Details -->
  <path d="M40,240 Q45,235 50,240 T60,240 T70,240 T80,240" fill="none" stroke="#3a2200" stroke-width="1" />
  <path d="M220,250 Q225,245 230,250 T240,250 T250,250 T260,250" fill="none" stroke="#3a2200" stroke-width="1" />
  
  <!-- Small Rocks -->
  <ellipse cx="70" cy="260" rx="15" ry="10" fill="#333" />
  <ellipse cx="230" cy="270" rx="20" ry="12" fill="#444" />
  <ellipse cx="110" cy="280" rx="10" ry="7" fill="#555" />
  
  <!-- Dancing Light Spots from Disco Ball -->
  <circle cx="90" cy="220" r="5" fill="#ff69b4" opacity="0.4" filter="url(#glow)" />
  <circle cx="200" cy="210" r="4" fill="#00bfff" opacity="0.4" filter="url(#glow)" />
  <circle cx="150" cy="230" r="6" fill="#f0e68c" opacity="0.4" filter="url(#glow)" />
  <circle cx="120" cy="200" r="3" fill="#7fff00" opacity="0.4" filter="url(#glow)" />
  <circle cx="180" cy="190" r="4" fill="#ee82ee" opacity="0.4" filter="url(#glow)" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 2

Judge's Analysis

    Player 2's submission demonstrates greater adherence to the prompt with a detailed depiction of a cactus wearing sunglasses under a disco ball in a desert at night.

    The inclusion of the moon, surrounding cacti, and colorful lighting adds depth and creativity.

    While Player 1's artwork is simpler and clean, it lacks the rich context and complexity present in Player 2's work.

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
31
Player 2
73
Rectangles

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

Player 1
1
Player 2
7
Circles

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

Player 1
11
Player 2
28
Ellipses

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

Player 1
4
Player 2
3
Lines

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

Player 1
9
Player 2
16
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
19
Groups

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

Player 1
4
Player 2
8

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
10
Player 2
15

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
16
Player 2
30

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
5

Complexity Metrics

Path Commands

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

Player 1
23
Player 2
82
Max Group Nesting

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

Player 1
Player 2
1
Defs Elements

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

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