Back

SVG Drawing Match #338

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Flying teapot pouring stars into a galaxy"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Definitions for gradients and patterns -->
  <defs>
    <radialGradient id="galaxyGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#2b2d42" />
      <stop offset="100%" stop-color="#0f0f0f" />
    </radialGradient>
    <radialGradient id="teapotGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffafcc" />
      <stop offset="100%" stop-color="#c94c4c" />
    </radialGradient>
    <linearGradient id="steamGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="rgba(255,255,255,0.8)" />
      <stop offset="100%" stop-color="rgba(255,255,255,0)" />
    </linearGradient>
    <pattern id="starPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="1.5" fill="#ffdd57" />
    </pattern>
    <radialGradient id="starGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffffff" />
      <stop offset="100%" stop-color="#ffdd57" />
    </radialGradient>
  </defs>

  <!-- Galaxy Background -->
  <rect width="300" height="300" fill="url(#galaxyGradient)" />
  <!-- Spiral Galaxy -->
  <g transform="translate(150,150)">
    <g id="spiral">
      <path d="M0,0 C50,-80 120,-80 150,0 S250,80 150,150 S50,80 0,0" fill="none" stroke="url(#starGradient)" stroke-width="1"/>
      <path d="M0,0 C60,-90 140,-90 180,0 S280,90 180,180 S60,90 0,0" fill="none" stroke="url(#starGradient)" stroke-width="0.5"/>
      <path d="M0,0 C40,-70 110,-70 140,0 S240,70 140,140 S40,70 0,0" fill="none" stroke="url(#starGradient)" stroke-width="0.5"/>
    </g>
    <!-- Additional stars in the galaxy -->
    <circle cx="60" cy="-60" r="1.5" fill="url(#starGradient)" />
    <circle cx="-80" cy="40" r="1" fill="url(#starGradient)" />
    <circle cx="100" cy="100" r="2" fill="url(#starGradient)" />
    <circle cx="-120" cy="-20" r="1.2" fill="url(#starGradient)" />
    <circle cx="0" cy="0" r="3" fill="url(#starGradient)" />
  </g>

  <!-- Flying Teapot -->
  <g transform="translate(80,80)">
    <!-- Body of the teapot -->
    <path d="M50,100 C50,70 150,70 150,100 L150,130 C150,160 100,160 100,190 L80,190 C80,160 30,160 30,130 L30,100 C30,70 130,70 130,100 Z" fill="url(#teapotGradient)" stroke="#8d99ae" stroke-width="2"/>
    <!-- Spout -->
    <path d="M130,110 C160,120 160,80 130,90" fill="none" stroke="#8d99ae" stroke-width="2" />
    <!-- Handle -->
    <path d="M50,100 C30,120 30,80 50,100" fill="none" stroke="#8d99ae" stroke-width="2" />
    <!-- Wings -->
    <g fill="rgba(255,255,255,0.5)">
      <path d="M-20,50 Q-40,60 -20,70 Q-40,80 -20,90" />
      <path d="M-20,-50 Q-40,-60 -20,-70 Q-40,-80 -20,-90" />
    </g>
    <!-- Steam -->
    <path d="M60,50 C65,40 75,40 80,50" stroke="url(#steamGradient)" stroke-width="2" fill="none" />
    <path d="M70,40 C75,30 85,30 90,40" stroke="url(#steamGradient)" stroke-width="2" fill="none" />
  </g>

  <!-- Stars being poured -->
  <g>
    <circle cx="120" cy="100" r="2" fill="#ffdd57" opacity="0.8">
      <animate attributeName="cx" from="120" to="220" dur="4s" repeatCount="indefinite" />
      <animate attributeName="cy" from="100" to="200" dur="4s" repeatCount="indefinite" />
      <animate attributeName="opacity" from="1" to="0" dur="4s" repeatCount="indefinite" />
    </circle>
    <circle cx="125" cy="105" r="1.5" fill="#ffdd57" opacity="0.7">
      <animate attributeName="cx" from="125" to="225" dur="5s" repeatCount="indefinite" />
      <animate attributeName="cy" from="105" to="205" dur="5s" repeatCount="indefinite" />
      <animate attributeName="opacity" from="1" to="0" dur="5s" repeatCount="indefinite" />
    </circle>
    <circle cx="130" cy="110" r="2.5" fill="#ffdd57" opacity="0.6">
      <animate attributeName="cx" from="130" to="230" dur="6s" repeatCount="indefinite" />
      <animate attributeName="cy" from="110" to="210" dur="6s" repeatCount="indefinite" />
      <animate attributeName="opacity" from="1" to="0" dur="6s" repeatCount="indefinite" />
    </circle>
  </g>
</svg>
SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="galaxyGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" style="stop-color:#1a1a2e;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#3a3a6e;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="starGradient" cx="0.5" cy="0.5" r="0.5" fx="0.25" fy="0.25">
      <stop offset="0%" style="stop-color:#ffffff;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ffcc00;stop-opacity:0" />
    </radialGradient>
    <pattern id="starPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="1" fill="url(#starGradient)" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#galaxyGradient)" />
  <path d="M150,50 Q200,30 250,70 T300,150" stroke="#8e8e8e" stroke-width="2" fill="none" />
  <g transform="translate(150,50)">
    <ellipse cx="50" cy="0" rx="30" ry="20" fill="#d4af37" />
    <path d="M50,0 C70,20 90,20 110,0 C90,-20 70,-20 50,0 Z" fill="#b8860b" />
    <path d="M50,0 C70,20 90,20 110,0" stroke="#8b7355" stroke-width="2" fill="none" />
    <ellipse cx="110" cy="0" rx="10" ry="5" fill="#8b7355" />
    <ellipse cx="110" cy="0" rx="5" ry="2.5" fill="#d4af37" />
  </g>
  <circle cx="150" cy="150" r="50" fill="none" stroke="#ffffff" stroke-width="2" stroke-dasharray="5,5" />
  <ellipse cx="150" cy="150" rx="80" ry="50" fill="none" stroke="#ffffff" stroke-width="2" stroke-dasharray="5,5" />
  <circle cx="150" cy="150" r="30" fill="url(#starGradient)" />
  <rect x="0" y="0" width="300" height="300" fill="url(#starPattern)" fill-opacity="0.5" />
  <g transform="translate(110,70)">
    <path d="M50,0 C70,20 90,20 110,0 C90,-20 70,-20 50,0 Z" fill="#ffcc00" />
    <path d="M50,0 C70,20 90,20 110,0" stroke="#ff6600" stroke-width="2" fill="none" />
    <ellipse cx="110" cy="0" rx="10" ry="5" fill="#ff6600" />
    <ellipse cx="110" cy="0" rx="5" ry="2.5" fill="#ffcc00" />
  </g>
  <g transform="translate(190,130)">
    <path d="M50,0 C70,20 90,20 110,0 C90,-20 70,-20 50,0 Z" fill="#ffcc00" />
    <path d="M50,0 C70,20 90,20 110,0" stroke="#ff6600" stroke-width="2" fill="none" />
    <ellipse cx="110" cy="0" rx="10" ry="5" fill="#ff6600" />
    <ellipse cx="110" cy="0" rx="5" ry="2.5" fill="#ffcc00" />
  </g>
  <g transform="translate(140,180)">
    <path d="M50,0 C70,20 90,20 110,0 C90,-20 70,-20 50,0 Z" fill="#ffcc00" />
    <path d="M50,0 C70,20 90,20 110,0" stroke="#ff6600" stroke-width="2" fill="none" />
    <ellipse cx="110" cy="0" rx="10" ry="5" fill="#ff6600" />
    <ellipse cx="110" cy="0" rx="5" ry="2.5" fill="#ffcc00" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 1

Judge's Analysis

    Player 1's submission effectively captures the whimsical concept of a teapot pouring stars into a galaxy, with clear visual elements and a sense of motion.

    The composition is more coherent, with the teapot distinctly positioned and stars flowing, which aligns well with the prompt.

    Player 2's image, while creative, lacks clarity in depicting a teapot and the act of pouring stars, making it less direct in illustrating the idea.

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
20
Player 2
24
Rectangles

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

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

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

Player 1
5
Player 2
4

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2
7

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
7

Interactivity Metrics

Animations

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

Player 1
9
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
2
Player 2
4

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
27
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
5
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