Back

SVG Drawing Match #1154

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A fox riding a unicycle on a rainbow in a cubist style"

SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <linearGradient id="rainbowGradient" x1="0%" y1="50%" x2="100%" y2="50%">
      <stop offset="0%" style="stop-color:#FF0000;stop-opacity:1" />
      <stop offset="16.67%" style="stop-color:#FF7F00;stop-opacity:1" />
      <stop offset="33.33%" style="stop-color:#FFFF00;stop-opacity:1" />
      <stop offset="50%" style="stop-color:#00FF00;stop-opacity:1" />
      <stop offset="66.67%" style="stop-color:#0000FF;stop-opacity:1" />
      <stop offset="83.33%" style="stop-color:#4B0082;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#9400D3;stop-opacity:1" />
    </linearGradient>
    <pattern id="cubistPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="10" height="10" fill="#FFD700" />
      <rect x="10" y="10" width="10" height="10" fill="#FF4500" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#cubistPattern)" />
  <polygon points="50,250 250,250 150,150" fill="url(#rainbowGradient)" />
  <rect x="100" y="200" width="100" height="10" fill="#A0522D" />
  <circle cx="150" cy="200" r="20" fill="#8B4513" />
  <ellipse cx="150" cy="180" rx="30" ry="15" fill="#FF8C00" />
  <rect x="130" y="150" width="40" height="10" fill="#A0522D" transform="rotate(45,150,150)" />
  <polygon points="140,140 160,140 150,120" fill="#FF4500" />
  <circle cx="150" cy="130" r="5" fill="#000000" />
  <polygon points="145,125 155,125 150,115" fill="#FFFFFF" />
  <line x1="150" y1="140" x2="150" y2="160" stroke="#000000" stroke-width="2" />
  <polygon points="130,160 170,160 150,180" fill="#A0522D" />
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="foxGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#FF4500;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#DA70D6;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="rainbowGradient" gradientTransform="rotate(90)">
      <stop offset="0%" style="stop-color:#ff0000;stop-opacity:1" />
      <stop offset="16%" style="stop-color:#ff7f00;stop-opacity:1" />
      <stop offset="33%" style="stop-color:#ffff00;stop-opacity:1" />
      <stop offset="50%" style="stop-color:#00ff00;stop-opacity:1" />
      <stop offset="67%" style="stop-color:#0000ff;stop-opacity:1" />
      <stop offset="83%" style="stop-color:#4b0082;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#8f00ff;stop-opacity:1" />
    </linearGradient>
  </defs>
  
  <!-- Rainbow -->
  <path d="M0,150 C0,100 300,100 300,150 C300,180 0,180 0,150" fill="url(#rainbowGradient)" />
  
  <!-- Fox Body -->
  <polygon points="130,180 150,140 170,180" fill="url(#foxGradient)" style="stroke:black;stroke-width:2;" />
  <rect x="145" y="180" width="10" height="30" fill="url(#foxGradient)" transform="rotate(-20 150 180)" />
  
  <!-- Fox Head -->
  <polygon points="140,125 150,110 160,125" fill="url(#foxGradient)" style="stroke:black;stroke-width:2;" />
  <circle cx="150" cy="120" r="5" fill="black" />
  
  <!-- Fox Tail -->
  <polygon points="170,180 190,160 195,185 175,190" fill="url(#foxGradient)" style="stroke:black;stroke-width:2;" />
  
  <!-- Unicycle -->
  <circle cx="150" cy="210" r="15" fill="none" stroke="black" stroke-width="3" />
  <line x1="150" y1="195" x2="150" y2="210" stroke="black" stroke-width="2" />
  <line x1="150" y1="210" x2="165" y2="205" stroke="black" stroke-width="2" />
  <line x1="150" y1="210" x2="135" y2="205" stroke="black" stroke-width="2" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 2

Judge's Analysis

    Player 2's image better captures the idea of 'A fox riding a unicycle on a rainbow in a cubist style' with a clearer representation of the subject and a more vibrant use of color.

    The composition is more cohesive and visually appealing, effectively combining cubist elements with the playful theme.

    Player 1's image, while creative, is less clear in depicting the prompt and lacks the fluidity of the rainbow aspect.

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
13
Player 2
10
Rectangles

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

Player 1
5
Player 2
1
Circles

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

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

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

Player 1
4
Player 2
3
Paths

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

Player 1
Player 2
1
Groups

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

Player 1
Player 2

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
1

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

Complexity Metrics

Path Commands

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

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