Back

SVG Drawing Match #670

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A treehouse floating in a giant teacup, branches reaching out as sugar cubes orbit"

SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="cupGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FFD700" />
      <stop offset="100%" stop-color="#FFA500" />
    </linearGradient>
    <linearGradient id="treeGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#8B4513" />
      <stop offset="100%" stop-color="#A0522D" />
    </linearGradient>
    <linearGradient id="leafGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#32CD32" />
      <stop offset="100%" stop-color="#228B22" />
    </linearGradient>
    <pattern id="sugarPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect width="10" height="10" fill="#FFF" />
      <circle cx="5" cy="5" r="3" fill="#FFD700" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="#87CEEB" />
  <ellipse cx="150" cy="250" rx="120" ry="40" fill="url(#cupGradient)" />
  <rect x="100" y="150" width="100" height="100" fill="url(#treeGradient)" />
  <circle cx="150" cy="100" r="50" fill="url(#leafGradient)" />
  <polygon points="150,50 130,120 170,120" fill="#8B4513" />
  <circle cx="150" cy="100" r="10" fill="#FFF" />
  <circle cx="130" cy="120" r="10" fill="#FFF" />
  <circle cx="170" cy="120" r="10" fill="#FFF" />
  <circle cx="150" cy="50" r="5" fill="#FFD700" />
  <circle cx="200" cy="200" r="10" fill="url(#sugarPattern)" />
  <circle cx="100" cy="200" r="10" fill="url(#sugarPattern)" />
  <circle cx="150" cy="250" r="10" fill="url(#sugarPattern)" />
  <animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 150 250" to="360 150 250" dur="10s" repeatCount="indefinite" />
</svg>
SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Teacup -->
  <path d="M150 250C225 250 280 200 280 150C280 100 225 50 150 50C75 50 30 100 30 150C30 200 75 250 150 250" fill="#e5b9ad" stroke="#7f6958" stroke-width="3" />
  <path d="M150 150C175 150 200 125 200 100C200 75 175 50 150 50C125 50 100 75 100 100C100 125 125 150 150 150" fill="#ffd7c9" />
  
  <!-- Treehouse -->
  <g transform="translate(120 70)">
    <rect x="0" y="0" width="60" height="40" fill="#964B00" rx="5" />
    <rect x="10" y="10" width="40" height="20" fill="#7f5f3f" rx="3" />
    <path d="M0 40L30 60L60 40" fill="#964B00" />
    <circle cx="30" cy="30" r="10" fill="#ffe2c4" />
  </g>
  
  <!-- Branches -->
  <path d="M120 90C100 120 80 150 60 180C40 210 20 240 0 270" stroke="#3e8e41" stroke-width="5" fill="none" />
  <path d="M180 90C200 120 220 150 240 180C260 210 280 240 300 270" stroke="#3e8e41" stroke-width="5" fill="none" />
  <path d="M150 90C150 120 160 150 170 180C180 210 190 240 200 270" stroke="#3e8e41" stroke-width="5" fill="none" />
  
  <!-- Sugar Cubes -->
  <g transform="translate(150 150)">
    <rect x="-20" y="-20" width="40" height="40" fill="#ff69b4" rx="5" transform="rotate(45)" />
    <rect x="40" y="40" width="40" height="40" fill="#ff69b4" rx="5" transform="rotate(45)" />
    <rect x="0" y="60" width="40" height="40" fill="#ff69b4" rx="5" transform="rotate(45)" />
    <rect x="-60" y="0" width="40" height="40" fill="#ff69b4" rx="5" transform="rotate(45)" />
  </g>
  
  <!-- Orbits -->
  <circle cx="150" cy="150" r="80" stroke="#ffe2c4" stroke-width="2" fill="none" stroke-dasharray="10 10" />
  <circle cx="150" cy="150" r="100" stroke="#ffe2c4" stroke-width="2" fill="none" stroke-dasharray="10 10" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.1 405B Instruct Player 2

Judge's Analysis

    Player 2's submission more effectively captures the concept of a treehouse floating in a teacup with sugar cubes orbiting.

    The composition is creative and dynamic, with clear representation of the treehouse structure and orbiting elements, enhancing its visual appeal and adherence to the prompt.

    Player 1's image, while colorful, lacks clarity in depicting the floating treehouse and orbiting sugar cubes.

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

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

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

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

Player 1
Player 2
6
Groups

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
8

Interactivity Metrics

Animations

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

Player 1
1
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
Player 2
6

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
22
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
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