Back

SVG Drawing Match #2646

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Robot building a sandcastle on a moonlit beach."

SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moon" cx="60%" cy="30%" r="60%">
      <stop offset="0%" stop-color="#f4f0bb" stop-opacity="0.9"/>
      <stop offset="100%" stop-color="#29264d" stop-opacity="1"/>
    </radialGradient>
    <linearGradient id="sky" x1="50%" y1="0%" x2="50%" y2="100%">
      <stop offset="0%" stop-color="#1a1a4d"/>
      <stop offset="100%" stop-color="#2d2057"/>
    </linearGradient>
    <pattern id="sand" patternUnits="userSpaceOnUse" width="8" height="8">
      <path d="M0 8L8 0M-4 4L4 12M12 4L4 -4" stroke="#d4b483" stroke-width="1"/>
    </pattern>
    <filter id="glow">
      <feGaussianBlur stdDeviation="2" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#sky)"/>
  <circle cx="240" cy="60" r="40" fill="url(#moon)" filter="url(#glow)"/>
  <g fill="#fff" opacity="0.7">
    <circle cx="80" cy="45" r="1.2"/><circle cx="170" cy="30" r="1.5"/>
    <circle cx="120" cy="80" r="1"/><circle cx="50" cy="100" r="1.2"/>
  </g>

  <!-- Beach -->
  <path d="M0 180Q150 160 300 180L300 300 0 300Z" fill="url(#sand)"/>

  <!-- Robot -->
  <g transform="translate(130 170)">
    <rect x="-25" y="-50" width="50" height="80" fill="#5a7d8c" rx="5"/>
    <circle cx="0" cy="-55" r="20" fill="#7a9ca9"/>
    <rect x="-10" y="-70" width="20" height="15" fill="#4d6470"/>
    <g class="arms">
      <path d="M-40 -20l-30 40" stroke="#66808c" stroke-width="8" stroke-linecap="round"/>
      <path d="M40 -20l30 40" stroke="#66808c" stroke-width="8" stroke-linecap="round"/>
      <path d="M-60 20l-15-5 5-15" stroke="#d4b483" stroke-width="3"/>
      <path d="M70 60l20-25" stroke="#4d6470" stroke-width="6" stroke-linecap="round"/>
    </g>
    <g class="face">
      <rect x="-8" y="-60" width="16" height="8" fill="#363636"/>
      <circle cx="-5" cy="-50" r="2" fill="#88c0d0"/>
      <circle cx="5" cy="-50" r="2" fill="#88c0d0"/>
    </g>
  </g>

  <!-- Sandcastle -->
  <g transform="translate(200 210)">
    <path d="M-40 0h80l-20 40h-40z" fill="#e3c8a4"/>
    <path d="M-30 40h60l-15 30h-30z" fill="#d4b483"/>
    <path d="M-20 70h40l-10 20h-20z" fill="#c5a062"/>
    <rect x="-5" y="90" width="10" height="20" fill="#b89150"/>
    <path d="M0 90l10 -15-10-5-10 5z" fill="#d4b483"/>
  </g>

  <!-- Moon reflection -->
  <path d="M200 210q20 -15 80 5" stroke="none" fill-opacity="0.1">
    <animate attributeName="d" values="M200 210q20 -15 80 5;M200 215q25 -10 80 8;M200 210q20 -15 80 5" dur="4s" repeatCount="indefinite"/>
  </path>
</svg>
SVG by o4-mini high (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0%" stop-color="#001022"/>
      <stop offset="100%" stop-color="#334"/>
    </linearGradient>
    <radialGradient id="moonGlow" cx="50%" cy="25%" r="25%">
      <stop offset="0%" stop-color="#eef" stop-opacity="0.6"/>
      <stop offset="100%" stop-color="#eef" stop-opacity="0"/>
    </radialGradient>
    <radialGradient id="moonSurface" cx="50%" cy="25%" r="15%">
      <stop offset="0%" stop-color="#fff"/>
      <stop offset="100%" stop-color="#ddd"/>
    </radialGradient>
    <linearGradient id="waterGradient" x1="0" y1="180" x2="0" y2="300">
      <stop offset="0%" stop-color="#334" stop-opacity="0.6"/>
      <stop offset="100%" stop-color="#112" stop-opacity="0.8"/>
    </linearGradient>
    <pattern id="sandPattern" patternUnits="userSpaceOnUse" width="6" height="6">
      <rect width="6" height="6" fill="#e2c290"/>
      <circle cx="2" cy="2" r="1" fill="#d1ab66"/>
      <circle cx="4" cy="5" r="1" fill="#d1ab66"/>
    </pattern>
  </defs>

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

  <!-- Stars -->
  <g>
    <circle cx="20" cy="30" r="1.5" fill="#fff" opacity="0.8"/>
    <circle cx="50" cy="60" r="1" fill="#fff" opacity="0.7"/>
    <circle cx="80" cy="25" r="1.2" fill="#fff" opacity="0.9"/>
    <circle cx="120" cy="50" r="1" fill="#fff" opacity="0.7"/>
    <circle cx="200" cy="40" r="1.5" fill="#fff" opacity="0.8"/>
    <circle cx="250" cy="70" r="1" fill="#fff" opacity="0.6"/>
    <circle cx="180" cy="20" r="1.3" fill="#fff" opacity="0.8"/>
    <circle cx="280" cy="80" r="1.1" fill="#fff" opacity="0.7"/>
  </g>

  <!-- Moon Glow and Surface -->
  <circle cx="150" cy="80" r="70" fill="url(#moonGlow)"/>
  <circle cx="150" cy="80" r="35" fill="url(#moonSurface)"/>

  <!-- Water and Beach -->
  <rect x="0" y="180" width="300" height="20" fill="url(#waterGradient)"/>
  <rect x="0" y="200" width="300" height="100" fill="url(#sandPattern)"/>

  <!-- Sandcastle -->
  <g>
    <rect x="140" y="210" width="40" height="30" fill="#d9b37c" stroke="#b5945d" stroke-width="1"/>
    <rect x="120" y="220" width="10" height="20" fill="#d9b37c" stroke="#b5945d" stroke-width="1"/>
    <rect x="170" y="220" width="10" height="20" fill="#d9b37c" stroke="#b5945d" stroke-width="1"/>
    <polygon points="145,210 155,195 165,210" fill="#c8a268"/>
    <polygon points="120,220 125,210 130,220" fill="#c8a268"/>
    <polygon points="180,220 185,210 190,220" fill="#c8a268"/>
  </g>

  <!-- Robot Building the Castle -->
  <g transform="translate(80,195) scale(0.8)">
    <!-- Body -->
    <rect x="40" y="-60" width="30" height="40" fill="#ccd" stroke="#889" stroke-width="2" rx="4"/>
    <!-- Head -->
    <rect x="43" y="-80" width="24" height="20" fill="#dde" stroke="#889" stroke-width="2" rx="3"/>
    <circle cx="56" cy="-70" r="2" fill="#333"/>
    <circle cx="64" cy="-70" r="2" fill="#333"/>
    <rect x="57" y="-62" width="6" height="1" fill="#333"/>
    <!-- Antenna -->
    <line x1="65" y1="-80" x2="70" y2="-90" stroke="#889" stroke-width="2"/>
    <circle cx="70" cy="-90" r="2" fill="#f44"/>
    <!-- Arms -->
    <path d="M40,-50 l-15,10" stroke="#889" stroke-width="3" fill="none"/>
    <path d="M70,-50 l20,10" stroke="#889" stroke-width="3" fill="none"/>
    <!-- Shovel -->
    <line x1="90" y1="-40" x2="100" y2="-35" stroke="#774400" stroke-width="3"/>
    <path d="M100,-35 l5,1 l-1,5 l-5,-1 Z" fill="#aa8844" stroke="#774400" stroke-width="1"/>
    <!-- Legs -->
    <line x1="50" y1="-20" x2="50" y2="0" stroke="#889" stroke-width="4"/>
    <line x1="65" y1="-20" x2="65" y2="0" stroke="#889" stroke-width="4"/>
    <circle cx="50" cy="0" r="3" fill="#889"/>
    <circle cx="65" cy="0" r="3" fill="#889"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini high (2025-04-16) Player 2

Judge's Analysis

    Player 2's submission demonstrates stronger adherence to the prompt with a clearly defined robot and a more detailed sandcastle.

    The moonlit beach setting is more visually cohesive, and the technical execution, including shading and composition, is superior.

    Player 1's submission, while creative, is less detailed and lacks the same level of visual appeal.

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
24
Player 2
37
Rectangles

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

Player 1
5
Player 2
10
Circles

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

Player 1
8
Player 2
17
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
4
Polygons

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

Player 1
Player 2
3
Paths

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

Player 1
11
Player 2
3
Groups

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

Player 1
5
Player 2
3

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
4
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
6
Player 2
12

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
16
Player 2
18

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

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
38
Player 2
9
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
4
Player 2
5
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