Back

SVG Drawing Match #3

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Cactus wearing a Victorian top hat juggling three planets"

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#1a1a3f"/>
      <stop offset="100%" style="stop-color:#4a2445"/>
    </linearGradient>
    <radialGradient id="planetGlow" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#ff6b6b"/>
      <stop offset="100%" style="stop-color:#ff6b6b00"/>
    </radialGradient>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
  
  <!-- Cactus Body -->
  <path d="M130 180 Q130 120 130 100 T130 60 Q130 40 150 40 T170 60 Q170 80 170 100 T170 180" fill="#2d5a27"/>
  <path d="M110 120 H130 M170 140 H190" fill="none" stroke="#2d5a27" stroke-width="8"/>
  
  <!-- Top Hat -->
  <path d="M110 40 H190 V30 H160 Q150 10 140 30 H110 Z" fill="#1a1a1a"/>
  <rect x="120" y="30" width="60" height="10" fill="#333"/>
  <rect x="130" y="32" width="40" height="6" fill="#gold"/>
  
  <!-- Juggling Planets -->
  <g id="planets">
    <!-- Planet 1 -->
    <circle cx="100" cy="120" r="20" fill="#ff6b6b"/>
    <circle cx="100" cy="120" r="25" fill="url(#planetGlow)" opacity="0.5"/>
    <path d="M85 120 Q100 100 115 120" fill="none" stroke="#ffeb3b" stroke-width="2"/>
    
    <!-- Planet 2 -->
    <circle cx="150" cy="80" r="25" fill="#4fc3f7"/>
    <circle cx="150" cy="80" r="30" fill="url(#planetGlow)" opacity="0.5"/>
    <ellipse cx="150" cy="80" rx="25" ry="5" fill="#81d4fa"/>
    
    <!-- Planet 3 -->
    <circle cx="200" cy="130" r="15" fill="#b39ddb"/>
    <circle cx="200" cy="130" r="20" fill="url(#planetGlow)" opacity="0.5"/>
    <circle cx="190" cy="125" r="4" fill="#d1c4e9"/>
  </g>
  
  <!-- Cactus Details -->
  <g id="spines">
    <path d="M140 60 L145 55 M150 80 L155 75 M160 100 L165 95" stroke="#1a472a" stroke-width="1"/>
    <path d="M140 120 L135 115 M150 140 L145 135 M160 160 L155 155" stroke="#1a472a" stroke-width="1"/>
  </g>
  
  <!-- Stars -->
  <g id="stars">
    <circle cx="50" cy="50" r="1" fill="white"/>
    <circle cx="250" cy="40" r="1" fill="white"/>
    <circle cx="80" cy="30" r="1" fill="white"/>
    <circle cx="220" cy="60" r="1" fill="white"/>
    <circle cx="270" cy="90" r="1" fill="white"/>
  </g>
  
  <!-- Motion Lines -->
  <path d="M100 120 Q120 100 150 80 T200 130" fill="none" stroke="white" stroke-width="1" stroke-dasharray="5,5"/>
</svg>
SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="planetGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ff69b4"/>
      <stop offset="100%" stop-color="#c71585"/>
    </linearGradient>
    <linearGradient id="cactusGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#228b22"/>
      <stop offset="100%" stop-color="#006400"/>
    </linearGradient>
    <linearGradient id="hatGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#b0c4de"/>
      <stop offset="100%" stop-color="#6495ed"/>
    </linearGradient>
  </defs>
  <!-- Cactus -->
  <path d="M150,250 Q130,220 130,200 T150,180 T170,200 T170,220 Z" fill="url(#cactusGradient)" />
  <path d="M150,180 Q140,160 140,140 T150,120 T160,140 T160,160 Z" fill="url(#cactusGradient)" />
  <!-- Spines -->
  <path d="M145,185 L140,175 L150,170 L160,175 L155,185 Z" fill="#b22222" />
  <path d="M150,205 L145,195 L155,190 L165,195 L160,205 Z" fill="#b22222" />
  <!-- Top Hat -->
  <rect x="135" y="110" width="30" height="30" fill="url(#hatGradient)" />
  <rect x="130" y="140" width="40" height="20" fill="url(#hatGradient)" />
  <!-- Planets -->
  <circle cx="100" cy="150" r="15" fill="url(#planetGradient)" />
  <circle cx="200" cy="150" r="15" fill="url(#planetGradient)" />
  <circle cx="150" cy="120" r="15" fill="url(#planetGradient)" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 1

Judge's Analysis

    Player 1's image effectively captures the whimsical idea of a cactus wearing a Victorian top hat and juggling planets.

    The background and composition enhance the visual appeal, with clear representation of the cactus and planets.

    Player 2's image lacks clarity in depicting the concept, resulting in a less cohesive and visually engaging design.

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
23
Player 2
9
Rectangles

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

Player 1
3
Player 2
2
Circles

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

Player 1
12
Player 2
3
Ellipses

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

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

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

Player 1
7
Player 2
4
Groups

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

Player 1
3
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with opacity attributes in the SVG.

Player 1
3
Player 2
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
7

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
35
Player 2
24
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
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