Back

SVG Drawing Match #1036

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A moonlit violin serenades a dancing galaxy, in impressionism"

SVG by Claude 3.7 Sonnet Thinking (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Definitions -->
  <defs>
    <!-- Night sky gradient -->
    <radialGradient id="skyGradient" cx="50%" cy="50%" r="80%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#1a0033" />
      <stop offset="80%" stop-color="#000814" />
      <stop offset="100%" stop-color="#000000" />
    </radialGradient>
    
    <!-- Moon glow -->
    <radialGradient id="moonGlow" cx="30%" cy="30%" r="70%" fx="25%" fy="25%">
      <stop offset="0%" stop-color="#ffffff" stop-opacity="1" />
      <stop offset="40%" stop-color="#f0f0ff" stop-opacity="0.9" />
      <stop offset="100%" stop-color="#c0c0ff" stop-opacity="0.6" />
    </radialGradient>
    
    <!-- Galaxy swirl -->
    <radialGradient id="galaxyGradient" cx="50%" cy="50%" r="70%" fx="40%" fy="40%">
      <stop offset="0%" stop-color="#ff5ebb" stop-opacity="0.9" />
      <stop offset="40%" stop-color="#9370DB" stop-opacity="0.7" />
      <stop offset="70%" stop-color="#4169E1" stop-opacity="0.5" />
      <stop offset="100%" stop-color="#000060" stop-opacity="0" />
    </radialGradient>
    
    <!-- Violin wood texture -->
    <linearGradient id="violinWood" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#8B4513" />
      <stop offset="50%" stop-color="#CD853F" />
      <stop offset="100%" stop-color="#8B4513" />
    </linearGradient>
    
    <!-- Filters -->
    <filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="3" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
    
    <filter id="impressionist" x="0" y="0" width="100%" height="100%">
      <feTurbulence type="fractalNoise" baseFrequency="0.03" numOctaves="3" seed="5" />
      <feDisplacementMap in="SourceGraphic" scale="5" />
      <feGaussianBlur stdDeviation="0.5" />
    </filter>
    
    <!-- Star pattern -->
    <pattern id="starPattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="0.8" fill="white" opacity="0.7" />
      <circle cx="20" cy="30" r="0.6" fill="white" opacity="0.5" />
      <circle cx="30" cy="15" r="1.0" fill="white" opacity="0.8" />
      <circle cx="40" cy="40" r="0.5" fill="white" opacity="0.6" />
      <circle cx="25" cy="25" r="0.7" fill="white" opacity="0.7" />
    </pattern>
  </defs>
  
  <!-- Background night sky -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Stars -->
  <rect x="0" y="0" width="300" height="300" fill="url(#starPattern)" opacity="0.8" />
  
  <!-- Impressionist brush strokes for atmosphere -->
  <g opacity="0.3" filter="url(#impressionist)">
    <path d="M 30,100 Q 60,90 100,110 Q 140,120 180,100 Q 220,80 260,90" 
          stroke="#8080ff" stroke-width="15" fill="none" />
    <path d="M 50,150 Q 90,160 130,140 Q 170,130 210,150 Q 250,170 290,150" 
          stroke="#ff80bf" stroke-width="10" fill="none" />
    <path d="M 20,200 Q 70,190 120,210 Q 170,220 220,200 Q 270,180 290,200" 
          stroke="#80ffff" stroke-width="12" fill="none" />
  </g>
  
  <!-- Additional random stars with impressionist style -->
  <g filter="url(#impressionist)" opacity="0.8">
    <circle cx="30" cy="50" r="0.7" fill="white" />
    <circle cx="60" cy="80" r="0.9" fill="white" />
    <circle cx="90" cy="40" r="0.6" fill="white" />
    <circle cx="120" cy="70" r="1.0" fill="white" />
    <circle cx="150" cy="30" r="0.8" fill="white" />
    <circle cx="180" cy="60" r="0.7" fill="white" />
    <circle cx="210" cy="50" r="0.9" fill="white" />
    <circle cx="240" cy="80" r="0.8" fill="white" />
    <circle cx="270" cy="40" r="0.6" fill="white" />
    <circle cx="25" cy="120" r="0.7" fill="white" />
    <circle cx="55" cy="150" r="0.9" fill="white" />
    <circle cx="85" cy="170" r="0.6" fill="white" />
    <circle cx="115" cy="190" r="1.0" fill="white" />
    <circle cx="145" cy="130" r="0.8" fill="white" />
    <circle cx="175" cy="160" r="0.7" fill="white" />
    <circle cx="205" cy="180" r="0.9" fill="white" />
    <circle cx="235" cy="140" r="0.8" fill="white" />
    <circle cx="265" cy="170" r="0.6" fill="white" />
    <circle cx="40" cy="230" r="0.7" fill="white" />
    <circle cx="70" cy="210" r="0.9" fill="white" />
    <circle cx="100" cy="250" r="0.6" fill="white" />
    <circle cx="130" cy="230" r="1.0" fill="white" />
    <circle cx="160" cy="270" r="0.8" fill="white" />
    <circle cx="190" cy="240" r="0.7" fill="white" />
    <circle cx="220" cy="260" r="0.9" fill="white" />
    <circle cx="250" cy="220" r="0.8" fill="white" />
    <circle cx="280" cy="250" r="0.6" fill="white" />
  </g>
  
  <!-- Moon -->
  <circle cx="50" cy="60" r="30" fill="url(#moonGlow)" filter="url(#glow)" />
  
  <!-- Moon craters in impressionist style -->
  <g opacity="0.2" filter="url(#impressionist)">
    <circle cx="40" cy="50" r="5" fill="#c0c0c0" />
    <circle cx="60" cy="65" r="3" fill="#c0c0c0" />
    <circle cx="45" cy="70" r="4" fill="#c0c0c0" />
    <ellipse cx="55" cy="50" rx="4" ry="3" fill="#c0c0c0" />
  </g>
  
  <!-- Dancing galaxy -->
  <g transform="translate(170, 150)">
    <!-- Galaxy core -->
    <circle cx="0" cy="0" r="25" fill="url(#galaxyGradient)" filter="url(#glow)" />
    
    <!-- Galaxy spiral arms with impressionist style -->
    <g filter="url(#impressionist)">
      <!-- Spiral arm 1 -->
      <path d="M 0,0 Q 20,10 40,10 T 60,30" stroke="#ff7fbf" stroke-width="12" fill="none" opacity="0.7" />
      <path d="M 0,0 Q 25,15 45,15 T 65,35" stroke="#c18fff" stroke-width="10" fill="none" opacity="0.6" />
      <path d="M 0,0 Q 22,12 42,12 T 62,32" stroke="#5d8aff" stroke-width="8" fill="none" opacity="0.5" />
      
      <!-- Spiral arm 2 -->
      <path d="M 0,0 Q -10,20 -10,40 T -30,60" stroke="#ff7fbf" stroke-width="12" fill="none" opacity="0.7" />
      <path d="M 0,0 Q -15,25 -15,45 T -35,65" stroke="#c18fff" stroke-width="10" fill="none" opacity="0.6" />
      <path d="M 0,0 Q -12,22 -12,42 T -32,62" stroke="#5d8aff" stroke-width="8" fill="none" opacity="0.5" />
      
      <!-- Spiral arm 3 -->
      <path d="M 0,0 Q -20,-10 -40,-10 T -60,-30" stroke="#ff7fbf" stroke-width="12" fill="none" opacity="0.7" />
      <path d="M 0,0 Q -25,-15 -45,-15 T -65,-35" stroke="#c18fff" stroke-width="10" fill="none" opacity="0.6" />
      <path d="M 0,0 Q -22,-12 -42,-12 T -62,-32" stroke="#5d8aff" stroke-width="8" fill="none" opacity="0.5" />
      
      <!-- Spiral arm 4 -->
      <path d="M 0,0 Q 10,-20 10,-40 T 30,-60" stroke="#ff7fbf" stroke-width="12" fill="none" opacity="0.7" />
      <path d="M 0,0 Q 15,-25 15,-45 T 35,-65" stroke="#c18fff" stroke-width="10" fill="none" opacity="0.6" />
      <path d="M 0,0 Q 12,-22 12,-42 T 32,-62" stroke="#5d8aff" stroke-width="8" fill="none" opacity="0.5" />
    </g>
    
    <!-- Star clusters in the galaxy -->
    <g filter="url(#glow)">
      <circle cx="30" cy="15" r="2" fill="white" opacity="0.9" />
      <circle cx="-25" cy="35" r="1.5" fill="white" opacity="0.9" />
      <circle cx="-30" cy="-20" r="2" fill="white" opacity="0.9" />
      <circle cx="15" cy="-30" r="1.7" fill="white" opacity="0.9" />
      <circle cx="40" cy="25" r="1.2" fill="#ffccff" opacity="0.8" />
      <circle cx="-35" cy="45" r="1.3" fill="#ffccff" opacity="0.8" />
      <circle cx="-40" cy="-30" r="1.4" fill="#ffccff" opacity="0.8" />
      <circle cx="25" cy="-40" r="1.1" fill="#ffccff" opacity="0.8" />
    </g>
    
    <!-- Animated galaxy rotation effect -->
    <g>
      <animateTransform 
        attributeName="transform" 
        attributeType="XML" 
        type="rotate" 
        from="0" 
        to="360" 
        dur="120s" 
        repeatCount="indefinite" />
      
      <!-- Dust and small stars moving in the galaxy -->
      <circle cx="45" cy="20" r="0.7" fill="white">
        <animate attributeName="opacity" values="0.2;0.9;0.2" dur="8s" repeatCount="indefinite" />
      </circle>
      <circle cx="-35" cy="50" r="0.6" fill="white">
        <animate attributeName="opacity" values="0.9;0.3;0.9" dur="7s" repeatCount="indefinite" />
      </circle>
      <circle cx="-48" cy="-25" r="0.8" fill="white">
        <animate attributeName="opacity" values="0.4;1;0.4" dur="9s" repeatCount="indefinite" />
      </circle>
      <circle cx="22" cy="-42" r="0.5" fill="white">
        <animate attributeName="opacity" values="0.6;0.2;0.6" dur="6s" repeatCount="indefinite" />
      </circle>
    </g>
  </g>
  
  <!-- Violin -->
  <g transform="translate(100, 160) rotate(-15)">
    <!-- Violin body -->
    <path d="M -20,-60 C -25,-40 -30,-20 -25,0 C -20,20 -10,40 0,60 C 10,40 20,20 25,0 C 30,-20 25,-40 20,-60 C 10,-70 -10,-70 -20,-60 Z" 
          fill="url(#violinWood)" stroke="#4a2700" stroke-width="1.5" filter="url(#impressionist)" />
    
    <!-- Violin neck -->
    <rect x="-5" y="-95" width="10" height="35" fill="#8B4513" />
    
    <!-- Violin scroll -->
    <path d="M -5,-95 C -10,-100 -5,-110 0,-105 C 5,-110 10,-100 5,-95" 
          fill="#8B4513" stroke="#4a2700" stroke-width="1" />
    
    <!-- F-holes -->
    <path d="M -10,10 C -12,15 -12,20 -10,25 C -12,30 -12,35 -10,40" 
          fill="none" stroke="#4a2700" stroke-width="1.5" />
    <path d="M 10,10 C 12,15 12,20 10,25 C 12,30 12,35 10,40" 
          fill="none" stroke="#4a2700" stroke-width="1.5" />
    
    <!-- Strings -->
    <line x1="-3" y1="-95" x2="-3" y2="60" stroke="#d0d0d0" stroke-width="0.5" />
    <line x1="-1" y1="-95" x2="-1" y2="60" stroke="#d0d0d0" stroke-width="0.5" />
    <line x1="1" y1="-95" x2="1" y2="60" stroke="#d0d0d0" stroke-width="0.5" />
    <line x1="3" y1="-95" x2="3" y2="60" stroke="#d0d0d0" stroke-width="0.5" />
    
    <!-- Bridge -->
    <path d="M -12,25 C -8,20 8,20 12,25 L 12,28 C 8,23 -8,23 -12,28 Z" 
          fill="#d2b48c" />
    
    <!-- Tailpiece -->
    <path d="M -8,35 L 8,35 L 6,55 L -6,55 Z" fill="#4a2700" />
    
    <!-- Chin rest -->
    <path d="M -5,55 C -15,60 -15,65 -5,70 L 5,70 C 15,65 15,60 5,55 Z" 
          fill="#4a2700" />
    
    <!-- Bow -->
    <path d="M 30,-30 C 20,0 20,30 30,60" 
          fill="none" stroke="#8B4513" stroke-width="2" />
    <line x1="30" y1="-30" x2="30" y2="60" stroke="#f5deb3" stroke-width="0.7" />
    
    <!-- Music emanating from violin -->
    <g filter="url(#glow)">
      <!-- Music notes -->
      <g opacity="0.8">
        <path d="M 40,10 C 50,5 60,15 50,20" stroke="white" fill="none" stroke-width="1">
          <animate attributeName="opacity" values="0;0.8;0" dur="4s" repeatCount="indefinite" />
          <animateTransform attributeName="transform" type="translate" from="0,0" to="50,-30" dur="4s" repeatCount="indefinite" />
        </path>
        <circle cx="40" cy="20" r="3" fill="white">
          <animate attributeName="opacity" values="0;0.8;0" dur="4s" repeatCount="indefinite" />
          <animateTransform attributeName="transform" type="translate" from="0,0" to="50,-30" dur="4s" repeatCount="indefinite" />
        </circle>
      </g>
      
      <g opacity="0.8">
        <path d="M 45,20 C 55,15 65,25 55,30" stroke="white" fill="none" stroke-width="1">
          <animate attributeName="opacity" values="0;0.8;0" dur="4s" begin="1s" repeatCount="indefinite" />
          <animateTransform attributeName="transform" type="translate" from="0,0" to="60,0" dur="4s" begin="1s" repeatCount="indefinite" />
        </path>
        <circle cx="45" cy="30" r="3" fill="white">
          <animate attributeName="opacity" values="0;0.8;0" dur="4s" begin="1s" repeatCount="indefinite" />
          <animateTransform attributeName="transform" type="translate" from="0,0" to="60,0" dur="4s" begin="1s" repeatCount="indefinite" />
        </circle>
      </g>
      
      <g opacity="0.8">
        <path d="M 35,30 C 45,25 55,35 45,40" stroke="white" fill="none" stroke-width="1">
          <animate attributeName="opacity" values="0;0.8;0" dur="4s" begin="2s" repeatCount="indefinite" />
          <animateTransform attributeName="transform" type="translate" from="0,0" to="40,30" dur="4s" begin="2s" repeatCount="indefinite" />
        </path>
        <circle cx="35" cy="40" r="3" fill="white">
          <animate attributeName="opacity" values="0;0.8;0" dur="4s" begin="2s" repeatCount="indefinite" />
          <animateTransform attributeName="transform" type="translate" from="0,0" to="40,30" dur="4s" begin="2s" repeatCount="indefinite" />
        </circle>
      </g>
      
      <!-- Sound waves -->
      <path d="M 30,15 Q 45,5 60,15 Q 75,25 90,15" stroke="white" fill="none" stroke-width="0.5" opacity="0.5">
        <animate attributeName="opacity" values="0;0.5;0" dur="3s" repeatCount="indefinite" />
        <animate attributeName="d" values="M 30,15 Q 45,5 60,15 Q 75,25 90,15; M 30,15 Q 45,25 60,15 Q 75,5 90,15; M 30,15 Q 45,5 60,15 Q 75,25 90,15" dur="3s" repeatCount="indefinite" />
      </path>
      
      <path d="M 30,25 Q 50,10 70,25 Q 90,40 110,25" stroke="white" fill="none" stroke-width="0.5" opacity="0.4">
        <animate attributeName="opacity" values="0;0.4;0" dur="4s" begin="1s" repeatCount="indefinite" />
        <animate attributeName="d" values="M 30,25 Q 50,10 70,25 Q 90,40 110,25; M 30,25 Q 50,40 70,25 Q 90,10 110,25; M 30,25 Q 50,10 70,25 Q 90,40 110,25" dur="4s" begin="1s" repeatCount="indefinite" />
      </path>
      
      <path d="M 30,35 Q 55,15 80,35 Q 105,55 130,35" stroke="white" fill="none" stroke-width="0.5" opacity="0.3">
        <animate attributeName="opacity" values="0;0.3;0" dur="5s" begin="2s" repeatCount="indefinite" />
        <animate attributeName="d" values="M 30,35 Q 55,15 80,35 Q 105,55 130,35; M 30,35 Q 55,55 80,35 Q 105,15 130,35; M 30,35 Q 55,15 80,35 Q 105,55 130,35" dur="5s" begin="2s" repeatCount="indefinite" />
      </path>
    </g>
  </g>
  
  <!-- Additional stars that interact with the music -->
  <g>
    <circle cx="200" cy="80" r="1.2" fill="white">
      <animate attributeName="r" values="1.2;2;1.2" dur="3s" repeatCount="indefinite" />
      <animate attributeName="opacity" values="0.7;1;0.7" dur="3s" repeatCount="indefinite" />
    </circle>
    <circle cx="220" cy="100" r="1" fill="white">
      <animate attributeName="r" values="1;1.8;1" dur="4s" begin="1s" repeatCount="indefinite" />
      <animate attributeName="opacity" values="0.6;0.9;0.6" dur="4s" begin="1s" repeatCount="indefinite" />
    </circle>
    <circle cx="180" cy="90" r="0.8" fill="white">
      <animate attributeName="r" values="0.8;1.5;0.8" dur="5s" begin="2s" repeatCount="indefinite" />
      <animate attributeName="opacity" values="0.5;0.8;0.5" dur="5s" begin="2s" repeatCount="indefinite" />
    </circle>
    <circle cx="210" cy="70" r="1.5" fill="white">
      <animate attributeName="r" values="1.5;2.2;1.5" dur="4.5s" begin="1.5s" repeatCount="indefinite" />
      <animate attributeName="opacity" values="0.7;1;0.7" dur="4.5s" begin="1.5s" repeatCount="indefinite" />
    </circle>
    <circle cx="190" cy="110" r="1.3" fill="white">
      <animate attributeName="r" values="1.3;2;1.3" dur="3.5s" begin="0.5s" repeatCount="indefinite" />
      <animate attributeName="opacity" values="0.6;0.9;0.6" dur="3.5s" begin="0.5s" repeatCount="indefinite" />
    </circle>
  </g>
  
  <!-- Subtle color overlay for impressionist mood -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" opacity="0.1" />
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background - Galaxy -->
  <defs>
    <radialGradient id="grad1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#000033;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#000000;stop-opacity:1" />
    </radialGradient>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#grad1)" />
  
  <!-- Stars in the Galaxy -->
  <circle cx="50" cy="100" r="1" fill="#FFFFFF" />
  <circle cx="150" cy="50" r="1" fill="#FFFFFF" />
  <circle cx="200" cy="120" r="1" fill="#FFFFFF" />
  <circle cx="250" cy="80" r="1" fill="#FFFFFF" />
  <circle cx="100" cy="200" r="1" fill="#FFFFFF" />
  <circle cx="210" cy="220" r="1" fill="#FFFFFF" />
  
  <!-- Moon -->
  <circle cx="250" cy="50" r="20" fill="#FFFFCC" />
  
  <!-- Violin -->
  <g transform="translate(150, 150)">
    <path d="M20,80 Q40,100 20,120 Q0,140 20,160 Q40,180 20,200" fill="none" stroke="#663300" stroke-width="2" />
    <path d="M20,80 Q40,100 20,120 Q0,140 20,160 Q40,180 20,200" fill="none" stroke="#996633" stroke-width="1" />
    <rect x="16" y="78" width="6" height="124" fill="#663300" />
    <circle cx="20" cy="80" r="5" fill="#663300" />
    <circle cx="20" cy="200" r="5" fill="#663300" />
  </g>
  
  <!-- Dancing Galaxy -->
  <circle cx="150" cy="150" r="100" fill="none" stroke="#FFFFFF" />
  <circle cx="120" cy="125" r="10" fill="none" stroke="#FFFFFF" />
  <circle cx="100" cy="160" r="10" fill="none" stroke="#FFFFFF" />
  <circle cx="180" cy="140" r="10" fill="none" stroke="#FFFFFF" />
  <circle cx="160" cy="180" r="10" fill="none" stroke="#FFFFFF" />
  <circle cx="135" cy="185" r="10" fill="none" stroke="#FFFFFF" />
  <circle cx="105" cy="135" r="10" fill="none" stroke="#FFFFFF" />
  <circle cx="187" cy="165" r="10" fill="none" stroke="#FFFFFF" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet Thinking (2025-02-19) Player 1

Judge's Analysis

    Player 1's image captures the essence of a moonlit serenade with swirling colors representing a dancing galaxy, giving it a strong impressionistic feel.

    The composition is dynamic and visually engaging, effectively incorporating the prompt elements.

    In contrast, Player 2's image is minimalist and lacks the vibrant interpretation required by 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
96
Player 2
21
Rectangles

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

Player 1
4
Player 2
2
Circles

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

Player 1
57
Player 2
17
Ellipses

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

Player 1
1
Player 2
Lines

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

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

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

Player 1
13
Player 2
1

Visual Effects Metrics

Gradients

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

Player 1
4
Player 2
1
Patterns

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

Player 1
1
Player 2
Filters

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

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

The number of elements with stroke attributes in the SVG.

Player 1
31
Player 2
10

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
24
Player 2
4

Interactivity Metrics

Animations

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

Player 1
33
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
96
Player 2
8
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
2
Player 2
Defs Elements

The number of elements defined within the defs element in the SVG.

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