Back

SVG Drawing Match #1253

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A geometric whale made of floating translucent polygons in a starry sky"

SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Starry Sky -->
  <rect x="0" y="0" width="300" height="300" fill="url(#starry-sky)" />
  <linearGradient id="starry-sky" x1="0" y1="0" x2="0" y2="1">
    <stop offset="0" stop-color="#212121" />
    <stop offset="0.5" stop-color="#343434" />
    <stop offset="1" stop-color="#4d4d4d" />
  </linearGradient>
  <g id="stars">
    <circle cx="50" cy="50" r="1" fill="#fff" />
    <circle cx="100" cy="75" r="1" fill="#fff" />
    <circle cx="150" cy="100" r="1" fill="#fff" />
    <circle cx="200" cy="125" r="1" fill="#fff" />
    <circle cx="250" cy="150" r="1" fill="#fff" />
    <circle cx="50" cy="200" r="1" fill="#fff" />
    <circle cx="100" cy="225" r="1" fill="#fff" />
    <circle cx="150" cy="250" r="1" fill="#fff" />
    <circle cx="200" cy="275" r="1" fill="#fff" />
    <circle cx="250" cy="200" r="1" fill="#fff" />
  </g>

  <!-- Geometric Whale -->
  <g id="whale" transform="translate(150, 150)">
    <!-- Body -->
    <polygon points="0,0 20,0 30,20 40,0 60,0 50,20 40,40 30,60 20,40 10,20 0,40" fill="url(#body-gradient)" />
    <linearGradient id="body-gradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0" stop-color="#66d9ef" />
      <stop offset="0.5" stop-color="#33cccc" />
      <stop offset="1" stop-color="#0099cc" />
    </linearGradient>

    <!-- Tail -->
    <polygon points="60,0 70,20 80,0 90,20 100,0 110,20 100,40 90,60 80,40 70,60 60,40" fill="url(#tail-gradient)" />
    <linearGradient id="tail-gradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0" stop-color="#33cccc" />
      <stop offset="0.5" stop-color="#0099cc" />
      <stop offset="1" stop-color="#0066aa" />
    </linearGradient>

    <!-- Fins -->
    <polygon points="20,40 30,60 40,40 50,60" fill="url(#fin-gradient)" />
    <polygon points="80,40 90,60 100,40 110,60" fill="url(#fin-gradient)" />
    <linearGradient id="fin-gradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0" stop-color="#0099cc" />
      <stop offset="0.5" stop-color="#0066aa" />
      <stop offset="1" stop-color="#003366" />
    </linearGradient>

    <!-- Polygons -->
    <g id="polygons">
      <polygon points="10,20 20,40 30,20 40,40" fill="#44ffff" opacity="0.5" />
      <polygon points="40,40 50,60 60,40 70,60" fill="#44ffff" opacity="0.5" />
      <polygon points="70,60 80,80 90,60 100,80" fill="#44ffff" opacity="0.5" />
      <polygon points="100,80 110,100 120,80 130,100" fill="#44ffff" opacity="0.5" />
      <polygon points="130,100 140,120 150,100 160,120" fill="#44ffff" opacity="0.5" />
      <polygon points="160,120 170,140 180,120 190,140" fill="#44ffff" opacity="0.5" />
    </g>
  </g>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Starry sky background -->
  <rect width="300" height="300" fill="black" />
  <circle cx="150" cy="150" r="2" fill="white" />
  <circle cx="50" cy="100" r="1.5" fill="white" />
  <circle cx="200" cy="50" r="1" fill="white" />
  <!-- Geometric whale made of floating polygons -->
  <polygon points="150,50 100,200 200,200" fill="rgba(0, 0, 255, 0.7)" />
  <polygon points="130,70 80,170 180,170" fill="rgba(0, 0, 255, 0.5)" />
  <polygon points="155,80 130,150 180,150" fill="rgba(0, 0, 255, 0.6)" />
  <polygon points="160,120 120,140 170,140" fill="rgba(0, 0, 255, 0.8)" />
  <polygon points="140,100 110,130 160,130" fill="rgba(0, 0, 255, 0.4)" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.0 70B (8192) Player 1

Judge's Analysis

    Player 1's image effectively represents a whale using geometric, translucent polygons, adhering closely to the prompt.

    The use of gradient colors adds depth and creates a visually appealing composition against the starry background.

    Player 2's submission, while creative, lacks the recognizable form of a whale and doesn't use translucence as 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
21
Player 2
9
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
10
Player 2
3
Ellipses

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

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

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

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2

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
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

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