Back

SVG Drawing Match #679

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Ice cream cone in a spacesuit orbiting a donut planet"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with cosmic gradient -->
  <rect width="300" height="300" fill="url(#spaceGradient)"/>
  
  <!-- Star field -->
  <g id="stars">
    <circle cx="45" cy="20" r="1" fill="white"/>
    <circle cx="130" cy="15" r="1" fill="white"/>
    <circle cx="200" cy="25" r="1" fill="white"/>
    <circle cx="280" cy="10" r="1" fill="white"/>
    <circle cx="110" cy="280" r="1" fill="white"/>
  </g>

  <!-- Donut planet -->
  <g transform="translate(150,150)">
    <!-- Donut shape -->
    <path d="M 0,0 Q 150,75 300,0 Q 225,-75 150,-150 L 150,150 Z" fill="#FF69B4" opacity="0.8"/>
    <!-- Glaze effect -->
    <ellipse cx="150" cy="150" rx="120" ry="90" fill="url(#glazeGradient)"/>
    <!-- Sprinkles -->
    <circle cx="120" cy="100" r="5" fill="#FFD700"/>
    <circle cx="180" cy="80" r="4" fill="#FF0000"/>
    <circle cx="150" cy="140" r="3" fill="#00FF00"/>
  </g>

  <!-- Ice cream cone in spacesuit -->
  <g transform="rotate(30,150,150)">
    <!-- Cone -->
    <path d="M 50,0 L 100,0 L 150,80 L 200,0 L 250,0 Z" fill="#F5DEB3"/>
    <!-- Ice cream scoop -->
    <ellipse cx="150" cy="80" rx="30" ry="25" fill="#FFFFFF" stroke="#B1B1B1" stroke-width="2"/>
    <!-- Spacesuit -->
    <rect x="70" y="0" width="110" height="60" rx="10" fill="#444" stroke="#888" stroke-width="3"/>
    <!-- Helmet -->
    <ellipse cx="150" cy="40" rx="25" ry="20" fill="#444" stroke="#888" stroke-width="2">
      <ellipse cx="150" cy="40" rx="20" ry="15" fill="url(#visorGradient)"/>
    </ellipse>
  </g>

  <!-- Orbit path -->
  <circle cx="150" cy="150" r="100" fill="none" stroke="#666" stroke-width="1" opacity="0.5"/>

  <!-- Rocket trail -->
  <circle cx="150" cy="150" r="50" fill="none" stroke="#999" stroke-width="2" opacity="0.3"/>

  <!-- Gradients -->
  <defs>
    <linearGradient id="spaceGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" stop-color="#000000"/>
      <stop offset="1" stop-color="#1a1a4a"/>
    </linearGradient>
    <radialGradient id="glazeGradient" cx="150" cy="150" r="1" fx="150" fy="150">
      <stop offset="0" stop-color="#FFB5E8"/>
      <stop offset="1" stop-color="#FF69B4"/>
    </radialGradient>
    <linearGradient id="visorGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0" stop-color="#666"/>
      <stop offset="1" stop-color="#000"/>
    </linearGradient>
  </defs>
</svg>
SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Donut planet gradient -->
  <radialGradient id="donutGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
    <stop offset="0%" stop-color="#FF69B4" />
    <stop offset="100%" stop-color="#FFC67D" />
  </radialGradient>
  
  <!-- Donut planet -->
  <circle cx="150" cy="150" r="100" fill="url(#donutGradient)" />
  
  <!-- Donut planet sprinkle pattern -->
  <pattern id="sprinklePattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
    <circle cx="5" cy="5" r="2" fill="#FFFFFF" />
  </pattern>
  
  <!-- Donut planet sprinkles -->
  <circle cx="150" cy="150" r="100" fill="url(#sprinklePattern)" opacity="0.5" />
  
  <!-- Ice cream cone gradient -->
  <linearGradient id="coneGradient" x1="0" y1="0" x2="1" y2="1">
    <stop offset="0%" stop-color="#FFFF00" />
    <stop offset="100%" stop-color="#FFA07A" />
  </linearGradient>
  
  <!-- Ice cream cone -->
  <path d="M 220 100 L 240 120 L 220 140 Z" fill="url(#coneGradient)" />
  <path d="M 220 140 L 200 160 L 220 180 Z" fill="url(#coneGradient)" />
  <path d="M 220 180 L 240 200 L 220 220 Z" fill="url(#coneGradient)" />
  
  <!-- Ice cream scoop -->
  <circle cx="220" cy="100" r="20" fill="#FFFFFF" />
  
  <!-- Spacesuit -->
  <rect x="200" y="80" width="40" height="60" fill="#808080" rx="5" />
  <circle cx="220" cy="140" r="10" fill="#808080" />
  <path d="M 200 140 L 220 120 L 240 140" stroke="#808080" stroke-width="2" />
  
  <!-- Helmet -->
  <ellipse cx="220" cy="80" rx="15" ry="10" fill="#808080" />
  <circle cx="220" cy="70" r="5" fill="#808080" />
  
  <!-- Orbit path -->
  <path d="M 150 150 m 0 -100 a 100 100 0 1 1 0 200 a 100 100 0 1 1 0 -200" stroke="#FFFFFF" stroke-width="2" fill="none" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.1 405B Instruct Player 2

Judge's Analysis

    Player 2's submission creatively integrates the concept of an ice cream cone in a spacesuit orbiting a donut planet with clear visual elements.

    The use of color and pattern enhances the depiction of the donut planet, and the design is cohesive and visually appealing.

    Player 1's submission is less clear in illustrating the prompt, lacking discernible elements that convey the idea effectively.

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
15
Player 2
6

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
2
Player 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
11
Player 2
19
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
3
Player 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