Back

SVG Drawing Match #1410

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Lava lamp pouring into a teacup"

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Define gradients -->
  <defs>
    <radialGradient id="lavaGradient" cx="50%" cy="30%" r="50%">
      <stop offset="0%" stop-color="#ff6b6b"/>
      <stop offset="100%" stop-color="#ffcc00"/>
    </radialGradient>
    <linearGradient id="teacupGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="100%" stop-color="#cccccc"/>
    </linearGradient>
    <pattern id="steamPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <path d="M0,10 Q5,0 10,10" fill="none" stroke="#aaa" stroke-width="1"/>
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="#222"/>

  <!-- Lava Lamp Container -->
  <g id="lavaLamp" transform="translate(50,10)">
    <!-- Lamp body -->
    <rect x="40" y="20" width="60" height="180" rx="30" ry="30" fill="#444" stroke="#999" stroke-width="2"/>
    <!-- Lamp top -->
    <ellipse cx="70" cy="20" rx="30" ry="10" fill="#666" stroke="#bbb" stroke-width="2"/>
    <!-- Lava blobs in lamp -->
    <g id="lavaBlobs">
      <ellipse cx="70" cy="60" rx="12" ry="16" fill="url(#lavaGradient)" />
      <ellipse cx="70" cy="110" rx="10" ry="14" fill="url(#lavaGradient)" opacity="0.9"/>
      <ellipse cx="70" cy="150" rx="8" ry="12" fill="url(#lavaGradient)" opacity="0.8"/>
    </g>
    <!-- Dripping effect from the base of the lamp -->
    <path d="M60 190 Q70 205 80 190" fill="url(#lavaGradient)" opacity="0.95"/>
  </g>
  
  <!-- Pouring Lava Stream -->
  <g id="lavaStream">
    <path d="M110 195 C130 205, 150 220, 160 240 C165 245, 170 250, 168 255 C165 260, 160 265, 155 260 C150 255, 140 245, 135 240 C130 235, 125 230, 124 225" fill="url(#lavaGradient)" stroke="#ffbb33" stroke-width="1"/>
  </g>
  
  <!-- Teacup -->
  <g id="teacup" transform="translate(100,200)">
    <!-- Cup body with gradient fill -->
    <path d="M0 0 Q50 -20 100 0 L90 20 Q50 40 10 20 Z" fill="url(#teacupGradient)" stroke="#888" stroke-width="2"/>
    <!-- Cup handle -->
    <path d="M100 0 C130 10, 130 30, 100 40" fill="none" stroke="#888" stroke-width="2"/>
    <!-- Decorative steam -->
    <g id="steam" transform="translate(25,-30)">
      <path d="M0,0 c5 -10, 15 -10, 20 0" fill="none" stroke="url(#steamPattern)" stroke-width="1.5"/>
      <path d="M10,0 c5 -15, 20 -15, 25 0" fill="none" stroke="url(#steamPattern)" stroke-width="1.5" opacity="0.8"/>
      <path d="M20,0 c5 -12, 18 -12, 23 0" fill="none" stroke="url(#steamPattern)" stroke-width="1.5" opacity="0.6"/>
    </g>
  </g>
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
    <defs>
        <linearGradient id="lavaGradient" x1="0%" y1="100%" x2="0%" y2="0%">
            <stop offset="0%" style="stop-color:#ff5733; stop-opacity:1" />
            <stop offset="50%" style="stop-color:#ffaf33; stop-opacity:1" />
            <stop offset="100%" style="stop-color:#ffc300; stop-opacity:1" />
        </linearGradient>
        <radialGradient id="teaGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
            <stop offset="0%" style="stop-color:#b37200; stop-opacity:1" />
            <stop offset="100%" style="stop-color:#ffe58c; stop-opacity:1" />
        </radialGradient>
        <filter id="lavaFilter">
            <feGaussianBlur in="SourceGraphic" stdDeviation="5" />
        </filter>
    </defs>
    <g transform="translate(50,30)">
        <path d="M80 10 Q50 50 80 100 Q110 50 80 10 Z" fill="url(#lavaGradient)" filter="url(#lavaFilter)" />
        <circle cx="80" cy="30" r="20" fill="url(#lavaGradient)" />
        <circle cx="90" cy="70" r="15" fill="url(#lavaGradient)" />
        <circle cx="70" cy="90" r="10" fill="url(#lavaGradient)" />
    </g>
    <g transform="translate(80,200)">
        <path d="M30 0 Q10 30 0 40 L60 40 Q50 30 30 0 Z" fill="url(#teaGradient)" />
        <ellipse cx="30" cy="40" rx="30" ry="5" fill="#704D00" />
        <path d="M10 40 L50 40 Q55 45 60 40 L0 40 Q5 45 10 40 Z" fill="#8C6B00" />
    </g>
    <line x1="80" y1="100" x2="80" y2="200" stroke="#cc0000" stroke-width="5" stroke-opacity="0.5" />
    <text x="90" y="50" font-size="20" fill="#000" font-family="Arial" transform="rotate(-15, 90, 50)">Lava Tea</text>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 1

Judge's Analysis

    Player 1's submission effectively captures the idea of a lava lamp pouring into a teacup with a clear depiction of the lamp and the liquid flow into the cup.

    The composition is visually cohesive with a smooth transition between the elements, enhancing the overall visual appeal.

    Player 2's submission, while creative, lacks clarity in the connection between the lava lamp and the teacup, resulting in a less coherent representation of the prompt.

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
8
Rectangles

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

Player 1
2
Player 2
Circles

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

Player 1
Player 2
3
Ellipses

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

Player 1
4
Player 2
1
Lines

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

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

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

Player 1
5
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
9
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
12
Player 2
4

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
3
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
23
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
3
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
1

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