Back

SVG Drawing Match #2699

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cactus wearing a bowtie under a disco ball."

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="discoBallGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#fff" />
      <stop offset="50%" stop-color="#ccc" />
      <stop offset="100%" stop-color="#999" />
    </radialGradient>
    <linearGradient id="cactusGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#5fbf00" />
      <stop offset="100%" stop-color="#3d7f00" />
    </linearGradient>
    <linearGradient id="bowtieGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#ff00a6"/>
      <stop offset="100%" stop-color="#ffba00"/>
    </linearGradient>
    <pattern id="discoPattern" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="2" fill="#fff"/>
    </pattern>
  </defs>
  
  <!-- Background disco ball -->
  <circle cx="150" cy="80" r="60" fill="url(#discoBallGradient)" stroke="#666" stroke-width="2"/>
  <circle cx="150" cy="80" r="60" fill="url(#discoPattern)" opacity="0.3"/>
  
  <!-- Disco ball sparkles -->
  <g fill="#fff">
    <circle cx="110" cy="50" r="2"/>
    <circle cx="190" cy="50" r="2"/>
    <circle cx="135" cy="20" r="2"/>
    <circle cx="165" cy="20" r="2"/>
    <circle cx="90" cy="80" r="2"/>
    <circle cx="210" cy="80" r="2"/>
  </g>
  
  <!-- Cactus body -->
  <g id="cactus" transform="translate(120,140)">
    <path d="M30 0 
             Q50 10, 50 30 
             L50 90 
             Q50 110, 30 120 
             L20 120 
             Q0 110, 0 90 
             L0 30 
             Q0 10, 20 0 
             Z" fill="url(#cactusGradient)" stroke="#2d5c00" stroke-width="3"/>
    <!-- Left arm -->
    <path d="M0 50 
             Q-20 55, -20 70 
             Q-20 85, 0 90" fill="url(#cactusGradient)" stroke="#2d5c00" stroke-width="3"/>
    <!-- Right arm -->
    <path d="M50 60 
             Q70 65, 70 80 
             Q70 95, 50 90" fill="url(#cactusGradient)" stroke="#2d5c00" stroke-width="3"/>
    <!-- Spines on cactus -->
    <g stroke="#7cfc00" stroke-width="1.5">
      <line x1="15" y1="15" x2="35" y2="15" />
      <line x1="10" y1="30" x2="40" y2="30" />
      <line x1="15" y1="45" x2="35" y2="45" />
    </g>
  </g>
  
  <!-- Bowtie -->
  <g id="bowtie" transform="translate(110,210)">
    <!-- Left part of bowtie -->
    <polygon points="0,0 -20,10 0,20" fill="url(#bowtieGradient)" stroke="#aa0000" stroke-width="2"/>
    <!-- Center knot -->
    <rect x="0" y="5" width="10" height="10" fill="#fff" stroke="#666" stroke-width="1"/>
    <!-- Right part of bowtie -->
    <polygon points="10,0 30,10 10,20" fill="url(#bowtieGradient)" stroke="#aa0000" stroke-width="2"/>
  </g>
  
  <!-- Additional decorative elements -->
  <g opacity="0.7">
    <path d="M10,280 C50,250 100,250 140,280" fill="none" stroke="url(#bowtieGradient)" stroke-width="4" stroke-dasharray="5 5"/>
    <path d="M160,280 C200,250 250,250 290,280" fill="none" stroke="url(#bowtieGradient)" stroke-width="4" stroke-dasharray="5 5"/>
  </g>
</svg>
SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="discoGrad" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#2C3E50"/>
      <stop offset="100%" stop-color="#1A1A1A"/>
    </radialGradient>
    <linearGradient id="cactusGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#7ED957"/>
      <stop offset="100%" stop-color="#5AA637"/>
    </linearGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="2" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <rect width="300" height="300" fill="url(#discoGrad)"/>
  
  <!-- Disco Ball -->
  <g transform="translate(150 60)">
    <circle r="30" fill="#FAFAFA">
      <animate attributeName="opacity" values="1;0.8;1" dur="2s" repeatCount="indefinite"/>
    </circle>
    <g transform="scale(0.9)">
      <path d="M-15-15l30 30M15-15l-30 30" stroke="#FFD700" stroke-width="1.5"/>
      <circle cx="0" cy="0" r="5" fill="#FF4081" transform="rotate(45)"/>
      <circle cx="0" cy="0" r="3" fill="#00BCD4" transform="rotate(30)"/>
    </g>
  </g>

  <!-- Cactus Body -->
  <path d="M150 160c0-30 20-80 40-80s40 50 40 80c0 50-80 50-80 0z" fill="url(#cactusGrad)"/>
  <path d="M150 160c0-30-20-80-40-80s-40 50-40 80c0 50 80 50 80 0z" fill="url(#cactusGrad)"/>
  
  <!-- Spikes -->
  <g stroke="#FFEE58" stroke-width="1">
    <path d="M130 110l5-10M140 120l5-15M160 130l10-5"/>
    <path d="M170 110l-5-10M160 120l-5-15M140 130l-10-5"/>
  </g>

  <!-- Bowtie -->
  <path d="M150 180l-20-10 20-10 20 10z" fill="#E91E63">
    <animate attributeName="opacity" values="1;0.8;1" dur="1.5s" repeatCount="indefinite"/>
  </path>

  <!-- Disco Lights -->
  <g filter="url(#glow)" opacity="0.7">
    <path d="M100 0l50 200" stroke="purple" stroke-width="3"/>
    <path d="M200 0l-50 200" stroke="#00BCD4" stroke-width="3"/>
    <path d="M150 30l0 170" stroke="#FF4081" stroke-width="3"/>
  </g>

  <!-- Pot -->
  <rect x="120" y="230" width="60" height="30" fill="#795548"/>
  <rect x="110" y="260" width="80" height="10" fill="#6D4C41"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek R1 Player 2

Judge's Analysis

    Player 2's submission demonstrates superior creativity and technical quality.

    The cactus is well-defined, adorned with a vibrant bowtie, and placed under a disco ball emitting colorful light beams, creating a visually dynamic and appealing composition.

    Player 1's submission is less polished, with minimal detail and less effective use of color and composition to convey the idea.

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
20
Player 2
15
Rectangles

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

Player 1
1
Player 2
3
Circles

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

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

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

Player 1
5
Player 2
9
Groups

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

Player 1
5
Player 2
4

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
2
Patterns

The number of pattern definitions (pattern) in the SVG.

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

The number of elements with stroke attributes in the SVG.

Player 1
10
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
13

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
Player 2
2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
2
Player 2
4

Complexity Metrics

Path Commands

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

Player 1
19
Player 2
35
Max Group Nesting

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

Player 1
1
Player 2
1
Defs Elements

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

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

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