Back

SVG Drawing Match #1738

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Whale painting a starry night sky with its tail"

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="sky" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#0B0B3B"/>
      <stop offset="100%" stop-color="#000019"/>
    </radialGradient>
    <linearGradient id="whale" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#264B78"/>
      <stop offset="100%" stop-color="#142435"/>
    </linearGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="2" result="blur"/>
      <feComposite in="SourceGraphic" in2="blur" operator="over"/>
    </filter>
  </defs>

  <rect x="0" y="0" width="300" height="300" fill="url(#sky)"/>
  
  <g id="stars" opacity="0.8">
    <circle cx="50" cy="40" r="2" fill="white" filter="url(#glow)"/>
    <circle cx="120" cy="60" r="1.5" fill="white" filter="url(#glow)"/>
    <circle cx="200" cy="30" r="2" fill="white" filter="url(#glow)"/>
    <circle cx="250" cy="70" r="1.5" fill="white" filter="url(#glow)"/>
    <circle cx="180" cy="90" r="2" fill="white" filter="url(#glow)"/>
  </g>

  <path d="M80,180 C120,160 200,170 240,140 C260,130 270,150 260,170 C240,200 180,220 140,210 C100,200 60,190 80,180" fill="url(#whale)"/>
  
  <path id="tail" d="M240,140 C270,120 290,160 270,180" fill="none" stroke="#4B7BE5" stroke-width="12" stroke-linecap="round">
    <animate attributeName="d" dur="3s" repeatCount="indefinite"
      values="M240,140 C270,120 290,160 270,180;
              M240,140 C270,160 290,120 270,180;
              M240,140 C270,120 290,160 270,180"/>
  </path>

  <g id="paint-strokes">
    <path d="M260,150 C280,130 290,110 270,90" stroke="#FFD700" stroke-width="3" fill="none" opacity="0.6">
      <animate attributeName="opacity" values="0.6;0.2;0.6" dur="2s" repeatCount="indefinite"/>
    </path>
    <path d="M250,140 C270,120 280,100 260,80" stroke="#87CEEB" stroke-width="2" fill="none" opacity="0.5">
      <animate attributeName="opacity" values="0.5;0.1;0.5" dur="2.5s" repeatCount="indefinite"/>
    </path>
    <path d="M270,160 C290,140 300,120 280,100" stroke="#E6E6FA" stroke-width="2.5" fill="none" opacity="0.4">
      <animate attributeName="opacity" values="0.4;0.1;0.4" dur="3s" repeatCount="indefinite"/>
    </path>
  </g>

  <circle cx="120" cy="190" r="3" fill="white" opacity="0.8"/>
  <circle cx="125" cy="185" r="2" fill="white" opacity="0.6"/>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#001D47"/>
      <stop offset="100%" stop-color="#0A2A67"/>
    </linearGradient>
    <radialGradient id="starGradient">
      <stop offset="0%" stop-color="#FFFFFF" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#FFFFFF" stop-opacity="0"/>
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <circle cx="150" cy="80" r="30" fill="url(#starGradient)"/>
  <circle cx="80" cy="50" r="25" fill="url(#starGradient)"/>
  <circle cx="230" cy="30" r="20" fill="url(#starGradient)"/>
  <circle cx="200" cy="120" r="15" fill="url(#starGradient)"/>
  <circle cx="50" cy="150" r="10" fill="url(#starGradient)"/>
  
  <path d="M170,180 Q150,140 130,180" fill="#2575A9"/>
  <ellipse cx="150" cy="190" rx="70" ry="20" fill="#2575A9"/>
  <path d="M150,190 C140,220 160,220 150,250" fill="#2575A9" stroke="#1C5C85" stroke-width="2"/>
  
  <path d="M150,250 C155,240 175,245 190,240 Q200,230 210,240 Q215,250 210,260 Q200,270 190,245 Q175,235 170,245 Q165,250 150,250"
  fill="url(#skyGradient)" stroke="#1A4665" stroke-width="2"/>
  
  <circle cx="150" cy="180" r="5" fill="#FFFFFF"/>
  <path d="M145,175 L150,165 L155,175 L148,173 L150,180 L147,173 Z" fill="#000000"/>
  <circle cx="143" cy="173" r="2" fill="#FFFFFF"/>
  
  <path d="M150,250 Q145,260 140,250 Q130,240 115,250 Q110,260 125,270 Q140,280 160,260 Q170,240 155,250 Q150,260 150,250"
  fill="#1B3A6B" stroke="#122850" stroke-width="2"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 1

Judge's Analysis

    Player 1's submission creatively integrates the concept of a whale painting the sky with its tail by showing dynamic brush strokes, effectively conveying the idea of creation.

    The use of color contrasts and clarity in the whale's form enhances the visual appeal.

    Player 2's submission, while visually calming, lacks the direct representation of the whale actively painting the sky, making it less aligned with 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
13
Player 2
14
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
7
Player 2
7
Ellipses

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

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

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

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

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
9

Interactivity Metrics

Animations

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

Player 1
4
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 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
13
Player 2
25
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
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