Back

SVG Drawing Match #883

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A teacup galaxy with swirling stars and planets orbiting the saucer"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background with radial gradient -->
  <defs>
    <radialGradient id="spaceGrad" cx="150" cy="150" r="150" fx="150" fy="150">
      <stop offset="0" stop-color="#0B0B2D" stop-opacity="1"/>
      <stop offset="1" stop-color="#000000" stop-opacity="0.8"/>
    </radialGradient>
    
    <linearGradient id="steamGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0" stop-color="#FFFFFF" stop-opacity="0.8"/>
      <stop offset="1" stop-color="#FFFFFF" stop-opacity="0"/>
    </linearGradient>
    
    <path id="starPath" d="M150 0 L120 120 180 120 150 240 120 180 180 180"/>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#spaceGrad)"/>

  <!-- Swirling stars -->
  <g transform="rotate(45 150 150)">
    <path d="M150 0 L120 120 180 120 150 240 120 180 180 180" 
          stroke="#FFF" stroke-width="2" fill="none" opacity="0.6"/>
    <path d="M150 60 L120 180 180 180 150 300 120 240 180 240"
          stroke="#FFF" stroke-width="2" fill="none" opacity="0.6"/>
  </g>

  <!-- Teacup saucer -->
  <ellipse cx="150" cy="220" rx="80" ry="20" fill="#F0F0F0" stroke="#999" stroke-width="2">
    <animateTransform attributeName="transform" type="rotate" from="0 150 220" to="360 150 220" dur="8s" repeatCount="indefinite"/>
  </ellipse>

  <!-- Cup handle -->
  <path d="M240 210 C250 200, 260 200, 260 210 L260 230 C260 220, 250 220, 240 210" 
        fill="#F0F0F0" stroke="#999" stroke-width="2"/>

  <!-- Steam -->
  <g transform="translate(150 100)">
    <path d="M0 0 Q0 50, -20 70" fill="url(#steamGrad)"/>
    <path d="M0 0 Q0 40, 20 60" fill="url(#steamGrad)"/>
  </g>

  <!-- Planets and stars -->
  <g id="planets">
    <circle cx="150" cy="150" r="4" fill="#FFD700" stroke="#FFA500" stroke-width="1"/>
    <circle cx="100" cy="100" r="3" fill="#87CEEB" stroke="#4682B4" stroke-width="1"/>
    <circle cx="200" cy="200" r="2" fill="#98FB98" stroke="#006400" stroke-width="1"/>
  </g>

  <!-- Rocket trails -->
  <path d="M100 150 Q150 130, 200 150" stroke="#FF0000" stroke-width="2" opacity="0.7"/>
  <path d="M200 100 Q150 170, 100 200" stroke="#00FFFF" stroke-width="2" opacity="0.7"/>

  <!-- Star clusters -->
  <g transform="translate(150 150)" opacity="0.8">
    <circle cx="0" cy="0" r="2" fill="#FFF"/>
    <circle cx="20" cy="40" r="1" fill="#FFF"/>
    <circle cx="-30" cy="20" r="1.5" fill="#FFF"/>
  </g>

  <!-- Glow effect -->
  <ellipse cx="150" cy="150" rx="50" ry="50" fill="none" stroke="#FFF" stroke-width="2" opacity="0.3"/>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="galaxyGradient" cx="50%" cy="50%" r="100%">
      <stop offset="0%" style="stop-color:#0f0c29;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#1a1a3f;stop-opacity:1" />
    </radialGradient>
    <pattern id="starPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="1" fill="#fff" opacity="0.8"/>
    </pattern>
    <linearGradient id="teacupGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#ff9999;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff6666;stop-opacity:1" />
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="url(#galaxyGradient)"/>
  <g transform="translate(150,150)">
    <!-- Saucer -->
    <circle cx="0" cy="0" r="100" fill="none" stroke="#666" stroke-width="2" stroke-dasharray="5,5"/>
    <circle cx="0" cy="0" r="95" fill="url(#teacupGradient)" opacity="0.8"/>
    
    <!-- Cup -->
    <rect x="-30" y="-120" width="60" height="120" fill="#ff6b6b" rx="10" transform="rotate(45)"/>
    
    <!-- Handle -->
    <path d="M 30, -100 Q 50, -80 70, -100" stroke="#ff6b6b" stroke-width="10" fill="none"/>
    
    <!-- Stars -->
    <g opacity="0.7">
      <circle cx="-50" cy="-50" r="3" fill="#fff" filter="url(#starGlow)"/>
      <circle cx="40" cy="-70" r="2" fill="#fff" filter="url(#starGlow)"/>
      <circle cx="-30" cy="60" r="4" fill="#fff" filter="url(#starGlow)"/>
      <circle cx="70" cy="30" r="3" fill="#fff" filter="url(#starGlow)"/>
    </g>
    
    <!-- Planets -->
    <g transform="rotate(45)">
      <circle cx="-80" cy="0" r="8" fill="#87CEEB" filter="url(#planetGlow)"/>
      <circle cx="60" cy="0" r="6" fill="#FFD700" filter="url(#planetGlow)"/>
      <circle cx="-120" cy="0" r="10" fill="#98FB98" filter="url(#planetGlow)"/>
    </g>
  </g>
  <filter id="starGlow">
    <feGaussianBlur stdDeviation="1"/>
  </filter>
  <filter id="planetGlow">
    <feGaussianBlur stdDeviation="2"/>
  </filter>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Qwen-32B Player 2

Judge's Analysis

    Player 2's submission captures the concept of a teacup galaxy more effectively with a clear representation of a cup and swirling planets around it.

    The composition is more cohesive and visually appealing, with a smooth color palette and better adherence to the prompt.

    Player 1's image, while creative, lacks clarity and the elements are not as well integrated into the theme.

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

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

Player 1
6
Player 2
10
Ellipses

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

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

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

Player 1
8
Player 2
1
Groups

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

Player 1
4
Player 2
3

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
10
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
Player 2
6

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
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
18
Player 2
2
Max Group Nesting

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

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

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