Back

SVG Drawing Match #1000

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A neon koi fish swimming in a digital circuit pond"

SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="neonGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#FF00FF;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FF69B4;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="waterGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#000066;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#000099;stop-opacity:1" />
    </linearGradient>
    <pattern id="circuitPattern" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect width="10" height="10" fill="#009999" opacity="0.2"/>
      <path d="M0,0 L5,5 L10,0" fill="#009999" opacity="0.5"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#waterGradient)"/>
  <g transform="translate(150,150)">
    <path d="M-50,-30 Q0,0 50,-30 L60,-35 Q70,-40 80,-30 L85,-25 Q95,-20 100,-30 L110,-35 Q120,-40 130,-30 L135,0 Q140,30 130,60 L125,65 Q120,70 110,60 L105,55 Q100,50 90,60 L85,65 Q80,70 70,60 L65,55 Q60,50 50,60 L45,55 Q40,50 30,60 L25,55 Q20,50 10,60 L5,55 Q0,50 -10,60 L-15,55 Q-20,50 -30,60 L-35,55 Q-40,50 -50,40" fill="url(#neonGradient)" stroke="#FF00FF" stroke-width="2"/>
    <path d="M-50,-30 L-40,-20 L-30,-10 L-20,0 L-10,10 L0,20 L10,30" fill="#00FFFF" opacity="0.5"/>
    <path d="M-50,30 L-40,40 L-30,50 L-20,60 L-10,70 L0,80 L10,90" fill="#00FFFF" opacity="0.5"/>
  </g>
  <rect x="0" y="0" width="300" height="300" fill="url(#circuitPattern)" opacity="0.3"/>
  <g transform="translate(150,150)" opacity="0.7">
    <path d="M-50,-30 Q0,0 50,-30" fill="#00FFFF"/>
    <path d="M-50,30 Q0,60 50,30" fill="#00FFFF"/>
    <path d="M-50,-30 L-40,-20 L-30,-10 L-20,0 L-10,10 L0,20 L10,30" fill="#00FFFF" opacity="0.5"/>
    <path d="M-50,30 L-40,40 L-30,50 L-20,60 L-10,70 L0,80 L10,90" fill="#00FFFF" opacity="0.5"/>
  </g>
  <filter id="glow">
    <feGaussianBlur stdDeviation="2" result="glow"/>
    <feMerge>
      <feMergeNode in="glow"/>
      <feMergeNode in="SourceGraphic"/>
    </feMerge>
  </filter>
  <g filter="url(#glow)">
    <path d="M100,100 L110,110 L120,100" fill="#00FFFF"/>
    <path d="M150,150 L160,160 L170,150" fill="#00FFFF"/>
    <path d="M200,200 L210,210 L220,200" fill="#00FFFF"/>
  </g>
</svg>
SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Neon Glow Filter -->
    <filter id="neon">
      <feGaussianBlur in="SourceGraphic" stdDeviation="3" result="blur"/>
      <feMerge>
        <feMergeNode in="blur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <!-- Circuit Pattern -->
    <pattern id="circuit" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="20" height="20" fill="none" stroke="#0ff" stroke-width="0.5"/>
      <line x1="0" y1="10" x2="20" y2="10" stroke="#0ff" stroke-width="0.5"/>
      <line x1="10" y1="0" x2="10" y2="20" stroke="#0ff" stroke-width="0.5"/>
      <circle cx="10" cy="10" r="1.5" fill="#0ff"/>
    </pattern>
    <!-- Gradient Background -->
    <radialGradient id="pondGrad" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#000" />
      <stop offset="100%" stop-color="#010130" />
    </radialGradient>
    <!-- Koi Gradient -->
    <linearGradient id="koiGrad" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#ff00ff" />
      <stop offset="50%" stop-color="#00ffff" />
      <stop offset="100%" stop-color="#ffff00" />
    </linearGradient>
  </defs>

  <!-- Background representing digital pond -->
  <rect width="300" height="300" fill="url(#pondGrad)" />
  <rect width="300" height="300" fill="url(#circuit)" opacity="0.2"/>

  <!-- Digital circuit elements -->
  <g stroke="#0ff" stroke-width="1" opacity="0.6">
    <line x1="50" y1="250" x2="80" y2="220" />
    <line x1="80" y1="220" x2="110" y2="250" />
    <line x1="120" y1="240" x2="150" y2="210" />
    <line x1="150" y1="210" x2="180" y2="240" />
    <line x1="190" y1="230" x2="220" y2="200" />
    <line x1="220" y1="200" x2="250" y2="230" />
    <circle cx="80" cy="220" r="2" fill="#0ff"/>
    <circle cx="150" cy="210" r="2" fill="#0ff"/>
    <circle cx="220" cy="200" r="2" fill="#0ff"/>
  </g>

  <!-- Neon Koi Fish -->
  <g filter="url(#neon)">
    <!-- Body -->
    <path d="M50,150 C80,120 130,120 160,150 C175,165 190,170 210,160 C230,150 240,130 230,110 C220,90 200,80 180,90 C160,100 140,90 130,70 C120,50 90,50 80,70 C70,90 60,110 50,150 Z" fill="none" stroke="url(#koiGrad)" stroke-width="4" />
    <!-- Fins -->
    <path d="M130,70 C120,40 160,30 170,70" fill="none" stroke="url(#koiGrad)" stroke-width="3" />
    <path d="M210,160 C230,180 230,210 210,220" fill="none" stroke="url(#koiGrad)" stroke-width="3" />
    <path d="M50,150 C40,170 40,190 55,200" fill="none" stroke="url(#koiGrad)" stroke-width="3" />
    <!-- Tail -->
    <path d="M210,160 C240,150 260,140 275,130" fill="none" stroke="url(#koiGrad)" stroke-width="3" />
    <line x1="275" y1="130" x2="265" y2="125" stroke="url(#koiGrad)" stroke-width="3"/>
    <line x1="275" y1="130" x2="265" y2="135" stroke="url(#koiGrad)" stroke-width="3"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 2

Judge's Analysis

    Player 2's submission effectively captures the prompt with a neon outline of a koi fish integrated into a digital circuit-like background, maintaining a high level of creativity and technical quality.

    The use of vibrant colors and clear delineation of elements enhances the visual appeal, whereas Player 1's design is less representative of the koi fish and digital circuit theme.

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
14
Player 2
22
Rectangles

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

Player 1
3
Player 2
3
Circles

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

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

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

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
11

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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