Back

SVG Drawing Match #1919

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A surreal garden with levitating teacups and luminous jellyfish"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#c1f7f4" />
  
  <!-- Sun -->
  <circle cx="250" cy="50" r="30" fill="#ffd700" />
  
  <!-- Surreal Garden -->
  <!-- Luminous Jellyfish -->
  <circle cx="150" cy="200" r="20" fill="#ffffff">
    <animate attributeName="r" dur="1s" values="20;40;20" repeatCount="indefinite" />
  </circle>
  <circle cx="140" cy="180" r="12" fill="#ff73a1">
    <animate attributeName="r" dur="1s" values="12;24;12" repeatCount="indefinite" />
  </circle>
  <circle cx="160" cy="180" r="12" fill="#ff73a1">
    <animate attributeName="r" dur="1s" values="12;24;12" repeatCount="indefinite" />
  </circle>
  <circle cx="150" cy="210" r="7" fill="#ff73a1">
    <animate attributeName="r" dur="1s" values="7;14;7" repeatCount="indefinite" />
  </circle>
  
  <!-- Levitating Teacup 1 -->
  <path d="M80 120 q20 -20 40 0 q20 20 40 0 q-20 -30 -40 0 q-20 30 -40 0" fill="#fcbfa5" />
  <circle cx="100" cy="120" r="18" fill="#f1c9d3" />
  <circle cx="120" cy="105" r="8" fill="#f1c9d3" />
  
  <!-- Levitating Teacup 2 -->
  <path d="M200 80 q20 -20 40 0 q20 20 40 0 q-20 -30 -40 0 q-20 30 -40 0" fill="#f8b195" />
  <circle cx="220" cy="80" r="18" fill="#f2d4c3" />
  <circle cx="240" cy="65" r="8" fill="#f2d4c3" />
</svg>
SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="glow" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff7fb8" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#ff7fb8" stop-opacity="0"/>
    </radialGradient>
    <pattern id="grass" width="10" height="10" patternUnits="userSpaceOnUse">
      <path d="M0,10 C2.5,7 2.5,3 5,0 C7.5,3 7.5,7 10,10" fill="none" stroke="#2a543c" stroke-width="0.5"/>
    </pattern>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#1a1b3d"/>
  
  <!-- Ground -->
  <path d="M0,220 C50,200 250,240 300,210 L300,300 L0,300 Z" fill="url(#grass)"/>

  <!-- Floating teacups -->
  <g transform="translate(50,100)">
    <path d="M0,0 C10,-5 40,-5 50,0 C45,10 5,10 0,0 Z" fill="#e0d5c4"/>
    <path d="M10,-2 C20,-15 30,-15 40,-2" fill="none" stroke="#e0d5c4" stroke-width="2"/>
    <circle cx="25" cy="0" r="12" fill="none" stroke="#f0e5d4" stroke-width="0.5">
      <animate attributeName="r" values="12;13;12" dur="3s" repeatCount="indefinite"/>
    </circle>
  </g>

  <g transform="translate(200,150)">
    <path d="M0,0 C10,-5 40,-5 50,0 C45,10 5,10 0,0 Z" fill="#d4c3b2"/>
    <path d="M10,-2 C20,-15 30,-15 40,-2" fill="none" stroke="#d4c3b2" stroke-width="2"/>
    <circle cx="25" cy="0" r="12" fill="none" stroke="#e4d3c2" stroke-width="0.5">
      <animate attributeName="r" values="12;13;12" dur="2.5s" repeatCount="indefinite"/>
    </circle>
  </g>

  <!-- Jellyfish -->
  <g transform="translate(150,80)">
    <ellipse cx="0" cy="0" rx="30" ry="20" fill="#ff7fb8" opacity="0.8"/>
    <circle cx="0" cy="0" r="35" fill="url(#glow)"/>
    <path d="M-25,0 C-25,40 25,40 25,0" fill="none" stroke="#ff7fb8" stroke-width="1">
      <animate attributeName="d" values="M-25,0 C-25,40 25,40 25,0;M-25,0 C-25,35 25,35 25,0;M-25,0 C-25,40 25,40 25,0" dur="4s" repeatCount="indefinite"/>
    </path>
    <path d="M-15,0 C-15,30 15,30 15,0" fill="none" stroke="#ff7fb8" stroke-width="1">
      <animate attributeName="d" values="M-15,0 C-15,30 15,30 15,0;M-15,0 C-15,25 15,25 15,0;M-15,0 C-15,30 15,30 15,0" dur="3s" repeatCount="indefinite"/>
    </path>
  </g>

  <!-- Luminous particles -->
  <g>
    <circle cx="80" cy="160" r="2" fill="#fff">
      <animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/>
    </circle>
    <circle cx="220" cy="90" r="2" fill="#fff">
      <animate attributeName="opacity" values="0;1;0" dur="2s" repeatCount="indefinite"/>
    </circle>
    <circle cx="160" cy="200" r="2" fill="#fff">
      <animate attributeName="opacity" values="0;1;0" dur="4s" repeatCount="indefinite"/>
    </circle>
  </g>

  <!-- Floating plants -->
  <path d="M50,250 C50,220 70,200 90,220 C110,240 90,260 70,250" fill="#3a745c"/>
  <path d="M200,260 C200,230 220,210 240,230 C260,250 240,270 220,260" fill="#2a643c"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 2

Judge's Analysis

    Player 2's submission captures the surreal garden theme effectively with a dark, mysterious ambiance that enhances the luminous effect of the jellyfish and levitating teacups.

    The use of color and composition creates a more compelling visual narrative, while Player 1's work, although colorful, lacks clear representation of the prompt's elements and has a less coherent composition.

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
12
Player 2
18
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
9
Player 2
6
Ellipses

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

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

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

Player 1
Player 2
4

Visual Effects Metrics

Gradients

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

Player 1
Player 2
1
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
7

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
10

Interactivity Metrics

Animations

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

Player 1
4
Player 2
7
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
Player 2
3

Complexity Metrics

Path Commands

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

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