Back

SVG Drawing Match #1959

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Dancing cacti in a desert, wearing tiny top hats"

SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="sky" cx="150" cy="300" r="300" fx="150" fy="150">
      <stop offset="0%" stop-color="#FFD89B"/>
      <stop offset="50%" stop-color="#FDC167"/>
      <stop offset="100%" stop-color="#FEB152"/>
    </radialGradient>
    <pattern id="sand" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="2" fill="#E8C78F"/>
      <circle cx="15" cy="10" r="3" fill="#D4B379"/>
    </pattern>
  </defs>

  <rect width="300" height="300" fill="url(#sky)" />
  <rect width="300" height="100" y="200" fill="url(#sand)"/>

  <g transform="translate(50 150) rotate(-10)">
    <path d="M0 0 C 10 -40, 30 -40, 40 0 L 40 80 L 0 80 Z" fill="#6B8C42"/>
    <ellipse cx="20" cy="-25" rx="15" ry="10" fill="#0F0A00"/>
    <ellipse cx="10" cy="50" rx="8" ry="5" fill="#FF4500"/>
    <ellipse cx="30" cy="60" rx="8" ry="5" fill="#FF4500"/>
  </g>

   <g transform="translate(150 170)">
    <path d="M0 0 C 10 -50, 40 -20, 50 0 L 50 70 L 0 70 Z" fill="#4C7032"/>
    <rect x="5" y="-30" width="40" height="10" fill="#191204"/>
    <ellipse cx="15" cy="40" rx="10" ry="6" fill="yellow"/>
    <ellipse cx="35" cy="50" rx="10" ry="6" fill="yellow"/>
  </g>

  <g transform="translate(230 160) rotate(20)">
    <path d="M0 0 C 20 -30, 30 -50, 50 0 L 50 90 L 0 90 Z" fill="#5B823C"/>
    <polygon points="10 -15, 40 -10, 30 -25, 20 -20" fill="#2A1F0A"/>
    <ellipse cx="20" cy="60" rx="7" ry="4" fill="#FF6347"/>
    <ellipse cx="40" cy="70" rx="7" ry="4" fill="#FF6347"/>
  </g>

  <ellipse cx="80" cy="240" rx="20" ry="10" fill="#8B4513" transform="rotate(15 80 240)"/>
  <ellipse cx="180" cy="250" rx="30" ry="15" fill="#A0522D"/>
  <ellipse cx="260" cy="230" rx="25" ry="12" fill="#8B4513" transform="rotate(-5 260 230)"/>



</svg>
SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#FF7F50"/>
      <stop offset="100%" stop-color="#FFD700"/>
    </linearGradient>
    <linearGradient id="sandGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#F4A460"/>
      <stop offset="100%" stop-color="#8B4513"/>
    </linearGradient>
    <radialGradient id="sunGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#FFFF00"/>
      <stop offset="100%" stop-color="#FF8C00"/>
    </radialGradient>
    <pattern id="sandPattern" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="1" fill="#CD853F" fill-opacity="0.3"/>
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
  
  <!-- Sun -->
  <circle cx="250" cy="40" r="25" fill="url(#sunGradient)"/>
  <path d="M250 5 L250 -5 M285 40 L295 40 M250 75 L250 85 M215 40 L205 40 M272 18 L282 8 M272 62 L282 72 M228 62 L218 72 M228 18 L218 8" stroke="#FFFF00" stroke-width="3"/>
  
  <!-- Sand dunes -->
  <path d="M0 200 Q75 170, 150 210 Q225 180, 300 220 L300 300 L0 300 Z" fill="url(#sandGradient)"/>
  <rect x="0" y="200" width="300" height="100" fill="url(#sandPattern)"/>
  
  <!-- Cactus 1 - dancing -->
  <g transform="translate(80, 240)" class="cactus">
    <g transform="rotate(-10)">
      <!-- Main body -->
      <rect x="-15" y="-80" width="30" height="80" rx="10" fill="#2E8B57"/>
      <path d="M-15 -60 C-25 -65, -30 -60, -30 -40 C-30 -25, -20 -20, -15 -20" fill="#2E8B57"/>
      <!-- Arms -->
      <path d="M15 -50 C25 -55, 30 -50, 30 -30 C30 -15, 20 -10, 15 -10" fill="#2E8B57"/>
      
      <!-- Spikes -->
      <path d="M-15 -70 L-22 -75 M-15 -60 L-22 -65 M-15 -50 L-22 -55 M-15 -40 L-22 -45 M-15 -30 L-22 -35" stroke="#8B4513" stroke-width="1"/>
      <path d="M15 -70 L22 -75 M15 -60 L22 -65 M15 -50 L22 -55 M15 -40 L22 -45 M15 -30 L22 -35" stroke="#8B4513" stroke-width="1"/>
      
      <!-- Top hat -->
      <rect x="-12" y="-95" width="24" height="5" fill="black"/>
      <rect x="-8" y="-110" width="16" height="15" fill="black"/>
      <rect x="-8" y="-112" width="16" height="3" fill="red"/>
      
      <!-- Face -->
      <circle cx="-5" cy="-55" r="3" fill="black"/>
      <circle cx="5" cy="-55" r="3" fill="black"/>
      <path d="M-5 -40 Q0 -35, 5 -40" stroke="black" stroke-width="1.5" fill="none"/>
    </g>
    
    <!-- Dancing leg 1 -->
    <path d="M-5 0 C-10 15, -15 20, -10 30" stroke="#2E8B57" stroke-width="10" stroke-linecap="round"/>
    
    <!-- Dancing leg 2 -->
    <path d="M5 0 C25 10, 15 25, 20 35" stroke="#2E8B57" stroke-width="10" stroke-linecap="round"/>
  </g>
  
  <!-- Cactus 2 - dancing -->
  <g transform="translate(170, 230)" class="cactus">
    <g transform="rotate(10)">
      <!-- Main body -->
      <rect x="-15" y="-90" width="30" height="90" rx="10" fill="#3CB371"/>
      
      <!-- Arms -->
      <path d="M-15 -70 C-35 -75, -40 -65, -40 -50 C-40 -35, -25 -30, -15 -35" fill="#3CB371"/>
      <path d="M15 -60 C35 -50, 35 -40, 35 -30 C35 -20, 25 -15, 15 -25" fill="#3CB371"/>
      
      <!-- Spikes -->
      <path d="M-15 -80 L-22 -85 M-15 -70 L-22 -75 M-15 -60 L-22 -65 M-15 -50 L-22 -55 M-15 -40 L-22 -45" stroke="#8B4513" stroke-width="1"/>
      <path d="M15 -80 L22 -85 M15 -70 L22 -75 M15 -60 L22 -65 M15 -50 L22 -55 M15 -40 L22 -45" stroke="#8B4513" stroke-width="1"/>
      
      <!-- Top hat -->
      <rect x="-12" y="-105" width="24" height="5" fill="black"/>
      <rect x="-8" y="-120" width="16" height="15" fill="black"/>
      <rect x="-8" y="-122" width="16" height="3" fill="blue"/>
      
      <!-- Face -->
      <circle cx="-5" cy="-65" r="3" fill="black"/>
      <circle cx="5" cy="-65" r="3" fill="black"/>
      <path d="M-7 -50 Q0 -45, 7 -50" stroke="black" stroke-width="1.5" fill="none"/>
    </g>
    
    <!-- Dancing leg 1 -->
    <path d="M-5 0 C-20 5, -20 20, -15 30" stroke="#3CB371" stroke-width="10" stroke-linecap="round"/>
    
    <!-- Dancing leg 2 -->
    <path d="M5 0 C10 15, 15 25, 10 35" stroke="#3CB371" stroke-width="10" stroke-linecap="round"/>
  </g>
  
  <!-- Cactus 3 - dancing -->
  <g transform="translate(230, 250)" class="cactus">
    <g transform="rotate(-15)">
      <!-- Main body -->
      <rect x="-12" y="-70" width="24" height="70" rx="8" fill="#228B22"/>
      
      <!-- Arms -->
      <path d="M-12 -50 C-25 -55, -30 -45, -25 -30 C-22 -20, -16 -20, -12 -25" fill="#228B22"/>
      
      <!-- Spikes -->
      <path d="M-12 -60 L-18 -65 M-12 -50 L-18 -55 M-12 -40 L-18 -45 M-12 -30 L-18 -35" stroke="#8B4513" stroke-width="1"/>
      <path d="M12 -60 L18 -65 M12 -50 L18 -55 M12 -40 L18 -45 M12 -30 L18 -35" stroke="#8B4513" stroke-width="1"/>
      
      <!-- Top hat -->
      <rect x="-10" y="-85" width="20" height="5" fill="black"/>
      <rect x="-7" y="-100" width="14" height="15" fill="black"/>
      <rect x="-7" y="-102" width="14" height="3" fill="purple"/>
      
      <!-- Face -->
      <circle cx="-4" cy="-50" r="2.5" fill="black"/>
      <circle cx="4" cy="-50" r="2.5" fill="black"/>
      <path d="M-5 -35 Q0 -30, 5 -35" stroke="black" stroke-width="1.5" fill="none"/>
    </g>
    
    <!-- Dancing leg 1 -->
    <path d="M-5 0 C-5 10, -10 20, -5 25" stroke="#228B22" stroke-width="8" stroke-linecap="round"/>
    
    <!-- Dancing leg 2 -->
    <path d="M5 0 C15 5, 10 15, 15 25" stroke="#228B22" stroke-width="8" stroke-linecap="round"/>
  </g>
  
  <!-- Musical notes floating -->
  <g fill="black">
    <path d="M60 160 L60 140 L65 135 A5 5 0 1 1 65 145 L60 150 Z" transform="rotate(-10, 60, 160)"/>
    <path d="M140 130 L140 110 L145 105 A5 5 0 1 1 145 115 L140 120 Z" transform="rotate(10, 140, 130)"/>
    <path d="M200 155 L200 135 L205 130 A5 5 0 1 1 205 140 L200 145 Z" transform="rotate(-5, 200, 155)"/>
    <path d="M250 140 L250 120 L255 115 A5 5 0 1 1 255 125 L250 130 Z" transform="rotate(15, 250, 140)"/>
  </g>
  
  <!-- Small cacti in background -->
  <g transform="translate(30, 210) scale(0.6)">
    <rect x="-8" y="-40" width="16" height="40" rx="5" fill="#006400"/>
    <path d="M-8 -30 C-16 -32, -18 -25, -15 -20 C-12 -15, -8 -15, -8 -20" fill="#006400"/>
  </g>
  
  <g transform="translate(270, 220) scale(0.5)">
    <rect x="-8" y="-40" width="16" height="40" rx="5" fill="#006400"/>
    <path d="M8 -25 C16 -27, 18 -20, 15 -15 C12 -10, 8 -10, 8 -15" fill="#006400"/>
  </g>
  
  <!-- Cactus flowers -->
  <circle cx="77" cy="155" r="3" fill="pink"/>
  <circle cx="173" cy="130" r="3" fill="yellow"/>
  <circle cx="225" cy="175" r="3" fill="magenta"/>
  
  <!-- Animation -->
  <style>
    .cactus {
      animation: dance 2s infinite alternate ease-in-out;
    }
    @keyframes dance {
      0% { transform: translateY(0) rotate(-3deg); }
      100% { transform: translateY(-5px) rotate(3deg); }
    }
  </style>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini Pro 1.5 Player 1

Judge's Analysis

    Player 1's image clearly depicts the idea of 'dancing cacti in a desert, wearing tiny top hats' with three stylized cacti, each adorned with a hat and positioned to suggest movement.

    The composition is simple yet effectively conveys the theme.

    In contrast, Player 2's image lacks clarity in representing the prompt, as the elements are not distinctly identifiable as dancing cacti with top hats.

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
19
Player 2
55
Rectangles

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

Player 1
3
Player 2
16
Circles

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

Player 1
2
Player 2
11
Ellipses

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

Player 1
10
Player 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
1
Player 2
Paths

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

Player 1
3
Player 2
28
Groups

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

Player 1
3
Player 2
9

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
16

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
16
Player 2
17

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

Complexity Metrics

Path Commands

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

Player 1
15
Player 2
141
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
2
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