Back

SVG Drawing Match #1651

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating teapot pouring stars into a moonlit lake"

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="moonGlow" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="100%" stop-color="#f0f0f0" stop-opacity="0"/>
    </radialGradient>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#0d1337"/>
      <stop offset="100%" stop-color="#1a237e"/>
    </linearGradient>
    <linearGradient id="teapotGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#9c27b0"/>
      <stop offset="100%" stop-color="#673ab7"/>
    </linearGradient>
    <pattern id="stars" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="0.5" fill="white"/>
    </pattern>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
  <rect x="0" y="0" width="300" height="300" fill="url(#stars)"/>

  <!-- Moon -->
  <circle cx="250" cy="50" r="30" fill="#ffd700"/>
  <circle cx="250" cy="50" r="40" fill="url(#moonGlow)" opacity="0.6"/>

  <!-- Lake -->
  <path d="M0,200 Q150,180 300,200 L300,300 L0,300 Z" fill="#0277bd" opacity="0.8"/>
  <path d="M0,220 Q150,200 300,220 L300,300 L0,300 Z" fill="#01579b" opacity="0.6"/>

  <!-- Teapot -->
  <g transform="translate(100,80) rotate(-15)">
    <path d="M40,40 Q40,20 60,20 L100,20 Q120,20 120,40 L120,80 Q120,100 100,100 L60,100 Q40,100 40,80 Z" fill="url(#teapotGradient)"/>
    <path d="M120,60 L140,60 Q160,60 160,80 L160,90 Q160,110 140,110 L120,110" fill="url(#teapotGradient)"/>
    <path d="M70,0 Q80,-10 90,0 L90,20" fill="url(#teapotGradient)"/>
    <path d="M40,70 L20,90 Q10,100 20,110 L30,120" fill="url(#teapotGradient)"/>
  </g>

  <!-- Pouring Stars -->
  <g>
    <path d="M160,140 Q200,180 220,240" fill="none" stroke="#ffffff" stroke-width="2" opacity="0.5"/>
    <g transform="translate(160,140)">
      <animateTransform attributeName="transform" type="translate" values="160,140; 180,170; 200,200; 220,240" dur="3s" repeatCount="indefinite"/>
      <path d="M-5,-5 L5,5 M-5,5 L5,-5" stroke="#ffeb3b" stroke-width="2">
        <animate attributeName="opacity" values="1;0" dur="3s" repeatCount="indefinite"/>
      </path>
    </g>
  </g>

  <!-- Reflected Stars in Lake -->
  <circle cx="150" cy="250" r="1" fill="#ffffff" opacity="0.8"/>
  <circle cx="180" cy="260" r="1" fill="#ffffff" opacity="0.6"/>
  <circle cx="220" cy="270" r="1" fill="#ffffff" opacity="0.7"/>
  <circle cx="120" cy="280" r="1" fill="#ffffff" opacity="0.5"/>
</svg>
SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moonlight" cx="50%" cy="50%" r="75%" fx="30%" fy="20%">
      <stop offset="0%" stop-color="#223344" />
      <stop offset="50%" stop-color="#112233" />
      <stop offset="100%" stop-color="#051122" />
    </radialGradient>
    <linearGradient id="teapotGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#B26734" />
      <stop offset="50%" stop-color="#D99156" />
      <stop offset="100%" stop-color="#F2B779" />
    </linearGradient>
    <pattern id="starPattern" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="2" fill="#FFFF99" />
    </pattern>
  </defs>

  <rect width="300" height="300" fill="url(#moonlight)" />

  <path d="M100 50 C 100 10, 200 10, 200 50 V 180 Q 150 220, 100 180 Z" fill="url(#teapotGradient)" stroke="#65361A" stroke-width="3" />
  <ellipse cx="170" cy="60" rx="15" ry="10" fill="#65361A" />
  <path d="M180 55 C 190 40, 210 40, 220 55" fill="none" stroke="#65361A" stroke-width="5" />

  <path d="M200 180 C 200 190, 185 190, 185 190" stroke="#A9A9A9" stroke-width="5" fill="none" stroke-dasharray="4 4"/>
  <path  transform="rotate(20, 185, 190)" d="M160 200 L 185 190 L 210 200" fill="url(#starPattern)" />
  <circle cx="165" cy="230" r="5" fill="#FFFF99" />
  <circle cx="175" cy="260" r="3" fill="#FFFF99" />
  <circle cx="190" cy="240" r="4" fill="#FFFF99" />
  <circle cx="205" cy="270" r="2" fill="#FFFF99" />
  <ellipse cx="150" cy="280" rx="8" ry="4" fill="url(#starPattern)" transform="rotate(30, 150,280)" />

  <path d="M 20 250 C 60 220, 100 270, 140 250 C 180 230, 220 260, 260 240" fill="none" stroke="#445566" stroke-width="3" stroke-dasharray="5 10" />

</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 submission creatively uses a purple teapot design that aligns well with the celestial theme, and the depiction of stars pouring into the lake is more visually evident.

    The background is starry, enhancing the moonlit ambiance, and the image adheres closely to the prompt.

    Player 2's work, while stylish, lacks clarity in depicting a teapot and the pouring of stars, making Player 1's image more aligned with the concept and visually appealing.

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

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

Player 1
2
Player 2
1
Circles

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

Player 1
7
Player 2
5
Ellipses

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

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
10

Interactivity Metrics

Animations

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

Player 1
2
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
2
Player 2
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
38
Player 2
15
Max Group Nesting

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

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