Back

SVG Drawing Match #1065

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Geometric sea turtle swimming through a labyrinth of colorful coral shapes"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="waterGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#1E90FF; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#00BFFF; stop-opacity:1" />
    </linearGradient>
    <linearGradient id="turtleGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#32CD32; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#006400; stop-opacity:1" />
    </linearGradient>
    <linearGradient id="coralGradient1" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#FF6347; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FF4500; stop-opacity:1" />
    </linearGradient>
    <linearGradient id="coralGradient2" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#FFD700; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFA500; stop-opacity:1" />
    </linearGradient>
    <pattern id="patternDots" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="2" fill="#ffffff" />
    </pattern>
  </defs>
  <!-- Background -->
  <rect width="300" height="300" fill="url(#waterGradient)" />
  
  <!-- Corals -->
  <g id="corals">
    <!-- Coral Cluster 1 -->
    <polygon points="50,250 60,230 70,250 80,220 90,250" fill="url(#coralGradient1)" />
    <polygon points="55,240 65,220 75,240 85,210 95,240" fill="url(#coralGradient2)" />
    <!-- Coral Cluster 2 -->
    <polygon points="200,260 210,240 220,260 230,230 240,260" fill="url(#coralGradient1)" />
    <polygon points="205,250 215,230 225,250 235,200 245,250" fill="url(#coralGradient2)" />
    <!-- Coral Cluster 3 -->
    <polygon points="125,270 135,250 145,270 155,240 165,270" fill="url(#coralGradient1)" />
    <polygon points="130,260 140,240 150,260 160,210 170,260" fill="url(#coralGradient2)" />
  </g>
  
  <!-- Turtle -->
  <g id="turtle" transform="translate(100,100)">
    <!-- Shell -->
    <path d="M50,50 
             C70,20 130,20 150,50 
             C170,80 170,120 150,150 
             C130,180 70,180 50,150 
             C30,120 30,80 50,50" 
          fill="url(#turtleGradient)" stroke="#006400" stroke-width="2"/>
    <!-- Legs -->
    <path d="M50,50 L30,40 L40,60 Z" fill="url(#turtleGradient)" stroke="#006400" stroke-width="1"/>
    <path d="M150,50 L170,40 L160,60 Z" fill="url(#turtleGradient)" stroke="#006400" stroke-width="1"/>
    <path d="M50,150 L30,160 L40,140 Z" fill="url(#turtleGradient)" stroke="#006400" stroke-width="1"/>
    <path d="M150,150 L170,160 L160,140 Z" fill="url(#turtleGradient)" stroke="#006400" stroke-width="1"/>
    <!-- Head -->
    <polygon points="150,50 160,55 155,65" fill="url(#turtleGradient)" stroke="#006400" stroke-width="1"/>
    <!-- Tail -->
    <polygon points="150,150 140,155 145,165" fill="url(#turtleGradient)" stroke="#006400" stroke-width="1"/>
    <!-- Eyes -->
    <circle cx="155" cy="60" r="2" fill="#000" />
    <circle cx="145" cy="60" r="2" fill="#000" />
  </g>
  
  <!-- Patterns and Details -->
  <circle cx="80" cy="180" r="3" fill="url(#patternDots)" />
  <circle cx="220" cy="190" r="3" fill="url(#patternDots)" />
  <circle cx="160" cy="230" r="3" fill="url(#patternDots)" />
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="seaGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(0,200,255);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(0,100,200);stop-opacity:1" />
    </linearGradient>
    <linearGradient id="shellGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(32,32,32);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(64,64,64);stop-opacity:1" />
    </linearGradient>
    <linearGradient id="finGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(100,200,150);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(50,150,100);stop-opacity:1" />
    </linearGradient>
    <pattern id="coralPattern" x="10" y="18" width="24" height="24" patternUnits="userSpaceOnUse">
      <circle cx="12" cy="12" r="10" fill="#ffcc00"/>
      <circle cx="24" cy="24" r="6" fill="#ff6600"/>
      <circle cx="10" cy="30" r="8" fill="#ff0066"/>
    </pattern>
  </defs>

  <rect width="300" height="300" fill="url(#seaGradient)"/>

  <g transform="translate(50, 150)">
    <!-- Turtle Shell -->
    <ellipse cx="0" cy="0" rx="70" ry="90" fill="url(#shellGradient)" stroke="#333" stroke-width="2"/>
    <!-- Turtle Fins -->
    <path d="M-70,-40 Q-110,-60 -130,-20 Q-110,0 -70,40 Z" fill="url(#finGradient)" />
    <path d="M70,-40 Q110,-60 130,-20 Q110,0 70,40 Z" fill="url(#finGradient)" />
    <path d="M-40,80 Q-60,110 -20,130 Q0,110 0,80 Z" fill="url(#finGradient)" />
    <path d="M40,80 Q60,110 20,130 Q0,110 0,80 Z" fill="url(#finGradient)" />
    <!-- Turtle Head -->
    <circle cx="0" cy="-90" r="20" fill="url(#finGradient)" />
  </g>

  <!-- Coral Labyrinth -->
  <g>
    <rect x="0" y="0" width="300" height="300" fill="url(#coralPattern)" opacity="0.5"/>
    <path d="M30,30 Q60,60 90,30 T150,30 T210,30" stroke="#dd0011" stroke-width="5" fill="none" />
    <path d="M30,150 Q60,180 90,150 T150,150 T210,150" stroke="#11dd00" stroke-width="5" fill="none" />
    <path d="M30,270 Q60,300 90,270 T150,270 T210,270" stroke="#1100dd" stroke-width="5" fill="none" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 1

Judge's Analysis

    Player 1's image captures the idea of a geometric sea turtle and colorful coral shapes more effectively.

    The use of geometric forms to represent the turtle and coral is clear and adheres to the prompt.

    Player 2's image, while visually interesting, lacks the distinct representation of a turtle and coral, making Player 1's submission more successful in terms of adherence to the 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
20
Player 2
14
Rectangles

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

Player 1
1
Player 2
2
Circles

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

Player 1
6
Player 2
4
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
8
Player 2
Paths

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

Player 1
5
Player 2
7
Groups

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

Player 1
2
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
7
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
3
Player 2
7

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