Back

SVG Drawing Match #641

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cactus wearing sunglasses, sipping a tiny umbrella drink under a disco ball"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background with gradient -->
  <rect width="300" height="300" fill="url(#bg-gradient)" />
  
  <!-- Disco ball -->
  <defs>
    <linearGradient id="disco-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#fff;stop-opacity:0.8" />
      <stop offset="100%" style="stop-color:#888;stop-opacity:0.8" />
    </linearGradient>
    <clipPath id="disco-ball">
      <circle cx="150" cy="100" r="80" fill="none" />
    </clipPath>
  </defs>
  
  <g clip-path="url(#disco-ball)">
    <circle cx="150" cy="100" r="80" fill="url(#disco-gradient)" />
    <!-- Disco ball lights -->
    <g id="light-reflections">
      <circle cx="120" cy="90" r="5" fill="#fff" />
      <circle cx="180" cy="90" r="5" fill="#fff" />
      <circle cx="150" cy="70" r="5" fill="#fff" />
      <circle cx="150" cy="130" r="5" fill="#fff" />
    </g>
  </g>

  <!-- Cactus body -->
  <path d="M150,200 L130,220 Q120,230 110,230 L120,250 Q120,240 130,240 L130,260 Q140,260 140,250 L140,230 Q140,220 150,220 L150,200 Z"
        fill="#3E8E41" />
  <!-- Cactus arms -->
  <path d="M170,210 L190,200 Q200,190 200,180 L180,180 Q180,190 170,190 Z"
        fill="#3E8E41" />
  <path d="M130,210 L110,200 Q100,190 100,180 L120,180 Q120,190 130,190 Z"
        fill="#3E8E41" />
  <!-- Cactus spines -->
  <line x1="140" y1="180" x2="160" y2="180" stroke="#8BC34A" stroke-width="2" />
  <line x1="140" y1="190" x2="160" y2="190" stroke="#8BC34A" stroke-width="2" />
  <line x1="140" y1="200" x2="160" y2="200" stroke="#8BC34A" stroke-width="2" />

  <!-- Sunglasses -->
  <path d="M100,170 L120,160 Q130,160 140,170 L140,180 Q130,180 120,190 L100,190 Z"
        fill="#2F4F4F" />
  <path d="M200,170 L180,160 Q170,160 160,170 L160,180 Q170,180 180,190 L200,190 Z"
        fill="#2F4F4F" />
  <rect x="110" y="160" width="80" height="30" fill="#6c5ce7" rx="15" />
  <!-- Sunglasses reflections -->
  <path d="M130,165 L140,170 M140,165 L150,170 M170,165 L180,170"
        stroke="#fff" stroke-width="2" fill="#fff" />
  
  <!-- Drink -->
  <rect x="220" y="220" width="20" height="60" fill="url(#drink-gradient)" rx="5" />
  <defs>
    <linearGradient id="drink-gradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#f39c12;stop-opacity:0.8" />
      <stop offset="100%" style="stop-color:#e67e22;stop-opacity:0.8" />
    </linearGradient>
  </defs>
  <!-- Umbrella -->
  <path d="M230,220 Q225,210 220,200 L225,200 Q230,200 235,210 230,220 Z"
        fill="#ff6b6b" />
  
  <!-- Star pattern on cactus -->
  <path d="M140,180 L145,175 150,180 155,175 150,180 150,185"
        fill="#ffd700" stroke="#ffd700" stroke-width="1" />
  <path d="M140,190 L145,185 150,190 155,185 150,190 150,195"
        fill="#ffd700" stroke="#ffd700" stroke-width="1" />
  
  <!-- Background gradient -->
  <defs>
    <linearGradient id="bg-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ff69b4" />
      <stop offset="100%" style="stop-color:#9c27b0" />
    </linearGradient>
  </defs>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient -->
  <defs>
    <linearGradient id="bgGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#1e3c72"/>
      <stop offset="100%" stop-color="#2a5298"/>
    </linearGradient>
    <!-- Disco Ball Gradient -->
    <radialGradient id="discoGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="100%" stop-color="#cccccc"/>
    </radialGradient>
    <!-- Sunglasses Gradient -->
    <linearGradient id="glassGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="rgba(0,0,0,0.2)"/>
      <stop offset="100%" stop-color="rgba(0,0,0,0.8)"/>
    </linearGradient>
    <!-- Drink Gradient -->
    <linearGradient id="drinkGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ff7e5f"/>
      <stop offset="100%" stop-color="#feb47b"/>
    </linearGradient>
    <!-- Umbrella Pattern -->
    <pattern id="stripePattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <line x1="0" y="0" x2="10" y="10" stroke="#ff4081" stroke-width="2"/>
      <line x1="10" y="0" x2="0" y="10" stroke="#ff4081" stroke-width="2"/>
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="url(#bgGradient)" />

  <!-- Disco Ball -->
  <g transform="translate(150, 50)">
    <circle cx="0" cy="0" r="40" fill="url(#discoGradient)" stroke="#999" stroke-width="2"/>
    <!-- Mirror Tiles -->
    <path d="M-25,-25 L25,25" stroke="#ccc" stroke-width="1"/>
    <path d="M25,-25 L-25,25" stroke="#ccc" stroke-width="1"/>
    <path d="M-25,0 L25,0" stroke="#ccc" stroke-width="1"/>
    <path d="M0,-25 L0,25" stroke="#ccc" stroke-width="1"/>
    <!-- Hanging Cables -->
    <line x1="-40" y1="0" x2="-30" y2="30" stroke="#666" stroke-width="2"/>
    <line x1="40" y1="0" x2="30" y2="30" stroke="#666" stroke-width="2"/>
  </g>
  
  <!-- Cactus -->
  <g transform="translate(150, 200)">
    <!-- Main Body -->
    <path d="M0,0 C-20,-60 -20,-60 0,-120 C20,-60 20,-60 0,0" fill="#2e8b57" stroke="#1e5f34" stroke-width="2"/>
    <!-- Arms -->
    <path d="M0,-60 C-30,-80 -30,-80 -50,-60 C-30,-70 -30,-70 -50,-60" fill="#2e8b57" stroke="#1e5f34" stroke-width="2"/>
    <path d="M0,-60 C30,-80 30,-80 50,-60 C30,-70 30,-70 50,-60" fill="#2e8b57" stroke="#1e5f34" stroke-width="2"/>
    <!-- Spines -->
    <g fill="#1e5f34">
      <circle cx="-10,-30" r="2"/>
      <circle cx="10,-40" r="2"/>
      <circle cx="-15,-50" r="2"/>
      <circle cx="15,-50" r="2"/>
      <circle cx="-20,-70" r="2"/>
      <circle cx="20,-70" r="2"/>
    </g>
    <!-- Sunglasses -->
    <g>
      <ellipse cx="-10,-90" cy="0" rx="10" ry="5" fill="url(#glassGradient)"/>
      <ellipse cx="10,-90" cy="0" rx="10" ry="5" fill="url(#glassGradient)"/>
      <line x1="-0,-90" y1="0" x2="10,-90" y2="0" stroke="#333" stroke-width="2"/>
    </g>
    <!-- Drink -->
    <g transform="translate(-30, -40)">
      <path d="M0,0 L10,0 L10,-20 L0,-20 Z" fill="url(#drinkGradient)" stroke="#d95f5f" stroke-width="1"/>
      <line x1="5,-20" y1="0" x2="5,-30" y2="-30" stroke="#d95f5f" stroke-width="2"/>
      <path d="M5,-30 L-5,-35 L5,-40" fill="url(#stripePattern)" stroke="#ff4081" stroke-width="1"/>
    </g>
  </g>
  
  <!-- Ground Shadow -->
  <ellipse cx="150" cy="240" rx="60" ry="10" fill="rgba(0,0,0,0.2)" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Llama-70B Player 1

Judge's Analysis

    Player 1's image effectively captures the whimsical idea of a cactus wearing sunglasses and sipping a tiny umbrella drink under a disco ball, using abstract shapes and a vibrant color palette.

    The composition is clear and visually appealing, adhering to the prompt with a playful interpretation.

    Player 2's image did not load, thus cannot be evaluated.

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
21
Player 2
Rectangles

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

Player 1
3
Player 2
Circles

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

Player 1
6
Player 2
Ellipses

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

Player 1
Player 2
Lines

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2

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
52
Player 2
Max Group Nesting

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

Player 1
1
Player 2
Defs Elements

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

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