Back

SVG Drawing Match #1030

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A futuristic cityscape made entirely of giant, glowing neon seashells"

SVG by DeepSeek V3
<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="#00112c" />
      <stop offset="100%" stop-color="#003366" />
    </linearGradient>
    <linearGradient id="shellBaseGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ff9eb5" />
      <stop offset="100%" stop-color="#ff6b8f" />
    </linearGradient>
    <linearGradient id="shellGlowGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ff66cc" />
      <stop offset="100%" stop-color="#ff1a75" />
    </linearGradient>
    <radialGradient id="shellHighlight" cx="0.5" cy="0.5" r="0.5" fx="0.25" fy="0.25">
      <stop offset="0%" stop-color="#ffffff" />
      <stop offset="100%" stop-color="transparent" />
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <g transform="translate(50, 150)">
    <path d="M 0 0 C 50 -150, 100 -150, 150 0" fill="url(#shellBaseGradient)" />
    <path d="M 0 0 C 50 -150, 100 -150, 150 0" fill="url(#shellGlowGradient)" fill-opacity="0.5" />
    <ellipse cx="75" cy="-75" rx="20" ry="40" fill="url(#shellHighlight)" />
  </g>
  <g transform="translate(100, 200)">
    <path d="M 0 0 C 50 -120, 100 -120, 150 0" fill="url(#shellBaseGradient)" />
    <path d="M 0 0 C 50 -120, 100 -120, 150 0" fill="url(#shellGlowGradient)" fill-opacity="0.5" />
    <ellipse cx="75" cy="-60" rx="20" ry="30" fill="url(#shellHighlight)" />
  </g>
  <g transform="translate(150, 100)">
    <path d="M 0 0 C 50 -200, 100 -200, 150 0" fill="url(#shellBaseGradient)" />
    <path d="M 0 0 C 50 -200, 100 -200, 150 0" fill="url(#shellGlowGradient)" fill-opacity="0.5" />
    <ellipse cx="75" cy="-100" rx="20" ry="50" fill="url(#shellHighlight)" />
  </g>
  <g transform="translate(200, 250)">
    <path d="M 0 0 C 50 -100, 100 -100, 150 0" fill="url(#shellBaseGradient)" />
    <path d="M 0 0 C 50 -100, 100 -100, 150 0" fill="url(#shellGlowGradient)" fill-opacity="0.5" />
    <ellipse cx="75" cy="-50" rx="20" ry="25" fill="url(#shellHighlight)" />
  </g>
  <circle cx="50" cy="50" r="10" fill="#ffff00" />
  <circle cx="250" cy="50" r="10" fill="#ffff00" />
  <circle cx="150" cy="20" r="15" fill="#ffff00" />
  <text x="150" y="280" font-size="20" font-family="Arial" fill="#ffffff" text-anchor="middle">Neon Shell City</text>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Neon glow effect filter -->
  <defs>
    <filter id="neon-glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="2" result="blur" />
      <feColorMatrix in="blur" mode="matrix" values="0 0 0 0 0  0 0.5 1 0 0  0 0 1 0.5 0  0 0 0 1 0" result="glow" />
      <feBlend in="SourceGraphic" in2="glow" mode="screen" />
    </filter>
  </defs>
  <!-- Giant Neon Seashells Cityscape -->
  <rect x="0" y="0" width="300" height="300" fill="#221f48" />
  <!-- Giant glowing neon seashells -->
  <path d="M40 200 l-20 -30 l-10 -10 l20 -20 L60 160 l20 50 Z" fill="#e94a84" filter="url(#neon-glow)" />
  <path d="M120 180 l-30 -40 l-15 -20 l30 -30 L150 130 l30 60 Z" fill="#ffcc29" filter="url(#neon-glow)" />
  <path d="M200 220 l-25 -35 l-15 -15 l25 -25 L230 180 l25 45 Z" fill="#32c5ff" filter="url(#neon-glow)" />
  <path d="M80 250 l-35 -25 l-20 -10 l35 -20 L120 220 l40 30 Z" fill="#ff6498" filter="url(#neon-glow)" />
  <path d="M160 240 l-40 -30 l-25 -15 l40 -25 L200 190 l40 50 Z" fill="#f9a847" filter="url(#neon-glow)" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek V3 Player 1

Judge's Analysis

    Player 1's image features a composition that more closely resembles a cityscape with its layered, towering shell-like structures.

    The glowing neon colors and the arrangement evoke a sense of a futuristic urban environment.

    Player 2's submission, while visually appealing, lacks the cityscape element and appears more abstract, not fully adhering to 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
16
Player 2
6
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
3
Player 2
Ellipses

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

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

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

Player 1
4
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
1
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
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
9
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
4
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
16
Player 2
35
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
4
Player 2
1
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
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