Back

SVG Drawing Match #1925

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A turtle surfing a rainbow wave under a starry sky"

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Gradient for Starry Night Sky -->
    <radialGradient id="skyGradient" cx="50%" cy="50%" r="75%">
      <stop offset="0%" stop-color="#1a1a40"/>
      <stop offset="100%" stop-color="#000"/>
    </radialGradient>
    <!-- Gradient for Rainbow Wave -->
    <linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#FF4B4B"/>
      <stop offset="20%" stop-color="#FFA54F"/>
      <stop offset="40%" stop-color="#FFE156"/>
      <stop offset="60%" stop-color="#7FFFD4"/>
      <stop offset="80%" stop-color="#4B7BFF"/>
      <stop offset="100%" stop-color="#A64BFF"/>
    </linearGradient>
    <!-- Pattern for Turtle shell -->
    <pattern id="shellPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <rect width="10" height="10" fill="#4B7BFF"/>
      <circle cx="5" cy="5" r="3" fill="#FFE156" />
    </pattern>
  </defs>
  <!-- Starry Night Sky Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />

  <!-- Random Stars -->
  <g fill="#FFF">
    <circle cx="30" cy="40" r="1.2"/>
    <circle cx="80" cy="20" r="0.8"/>
    <circle cx="150" cy="50" r="1.5"/>
    <circle cx="210" cy="60" r="1"/>
    <circle cx="250" cy="30" r="0.9"/>
    <circle cx="110" cy="90" r="1.2"/>
    <circle cx="60" cy="130" r="0.8"/>
    <circle cx="200" cy="120" r="1.3"/>
    <circle cx="270" cy="80" r="1"/>
    <circle cx="130" cy="20" r="0.7"/>
    <circle cx="220" cy="25" r="1"/>
  </g>

  <!-- Rainbow Wave -->
  <path d="M0,200 C50,180 100,220 150,200 C200,180 250,240 300,220 L300,300 L0,300 Z" fill="url(#rainbowGradient)" opacity="0.9"/>
  
  <!-- Turtle Surfing -->
  <g id="turtle" transform="translate(150,150)">
    <!-- Turtle Shell -->
    <ellipse cx="0" cy="0" rx="30" ry="20" fill="url(#shellPattern)" stroke="#333" stroke-width="1"/>
    <!-- Turtle Back -->
    <path d="M -30 0 Q -40 -15, -20 -20 Q -10 -10, -10 0 Q -10 10, -20 20 Q -40 15, -30 0" fill="#228B22" stroke="#1E7A1E" stroke-width="1"/>
    <!-- Turtle Head -->
    <ellipse cx="35" cy="0" rx="8" ry="6" fill="#228B22" stroke="#1E7A1E" stroke-width="1"/>
    <!-- Turtle Legs -->
    <!-- Front Leg -->
    <ellipse cx="10" cy="-25" rx="5" ry="3" fill="#228B22" stroke="#1E7A1E" stroke-width="1"/>
    <!-- Back Leg -->
    <ellipse cx="-10" cy="-25" rx="5" ry="3" fill="#228B22" stroke="#1E7A1E" stroke-width="1"/>
    <!-- Rear Leg -->
    <ellipse cx="-10" cy="25" rx="5" ry="3" fill="#228B22" stroke="#1E7A1E" stroke-width="1"/>
    <!-- Second Front Leg -->
    <ellipse cx="10" cy="25" rx="5" ry="3" fill="#228B22" stroke="#1E7A1E" stroke-width="1"/>
    <!-- Turtle Tail -->
    <path d="M -30,5 L -40,8 L -30,12 Z" fill="#228B22" stroke="#1E7A1E" stroke-width="1"/>
    <!-- Surfing Board -->
    <path d="M -45,15 Q -60,0, -45,-15 Q -30,-15, -30,15 Z" fill="#FF4B4B" stroke="#D43F3F" stroke-width="1"/>
    <!-- Add details on surfboard -->
    <line x1="-45" y1="15" x2="-45" y2="-15" stroke="#D43F3F" stroke-width="1"/>
  </g>
</svg>
SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
    <!-- Gradient for Rainbow Wave -->
    <linearGradient id="rainbowGrad" x1="0%" y1="0%" x2="100%" y2="0%">
        <stop offset="0%" stop-color="#FF69B4" />
        <stop offset="17%" stop-color="#FFA07A" />
        <stop offset="34%" stop-color="#FFFF00" />
        <stop offset="51%" stop-color="#008000" />
        <stop offset="68%" stop-color="#0000FF" />
        <stop offset="85%" stop-color="#4B0082" />
        <stop offset="100%" stop-color="#800080" />
    </linearGradient>

    <!-- Gradient for Starry Sky -->
    <linearGradient id="starryGrad" x1="0%" y1="0%" x2="100%" y2="0%">
        <stop offset="0%" stop-color="#333399" stop-opacity="0.8" />
        <stop offset="50%" stop-color="#222244" stop-opacity="0.6" />
        <stop offset="100%" stop-color="#111177" stop-opacity="0.4" />
    </linearGradient>

    <!-- Starry Sky -->
    <rect x="0" y="0" width="300" height="300" fill="url(#starryGrad)" rx="10" />
    <g id="stars">
        <circle cx="20" cy="10" r="2" fill="#FFFFFF" />
        <circle cx="60" cy="40" r="2" fill="#FFFFFF" />
        <circle cx="100" cy="10" r="2" fill="#FFFFFF" />
        <circle cx="140" cy="60" r="2" fill="#FFFFFF" />
        <circle cx="180" cy="10" r="2" fill="#FFFFFF" />
        <circle cx="220" cy="40" r="2" fill="#FFFFFF" />
        <circle cx="260" cy="10" r="2" fill="#FFFFFF" />
    </g>

    <!-- Rainbow Wave -->
    <path id="rainbow-wave" d="M 0 150 C 75 150 100 200 150 200 S 200 150 225 150" stroke="url(#rainbowGrad)" stroke-width="5" fill="none" />

    <!-- Turtle -->
    <g id="turtle" transform="translate(160 220) scale(0.7)">
        <circle cx="0" cy="-25" r="20" fill="#008000" />
        <circle cx="0" cy="0" r="20" fill="#964B00" />
        <path d="M -20 -25 L 20 -25" stroke="#964B00" stroke-width="5" />
        <path d="M 0 -30 L 0 -50" stroke="#964B00" stroke-width="3" />
        <circle cx="0" cy="20" r="5" fill="#FFFFFF" />
        <circle cx="5" cy="25" r="2" fill="#000000" />
        <circle cx="-5" cy="25" r="2" fill="#000000" />
    </g>

    <!-- Surfboard -->
    <g id="surfboard" transform="translate(160 240) scale(0.7)">
        <rect x="-30" y="0" width="60" height="10" fill="#663300" rx="2" />
        <rect x="-20" y="10" width="40" height="5" fill="#663300" rx="1" />
        <path d="M -30 0 L -30 15" stroke="#663300" stroke-width="3" />
        <path d="M 30 0 L 30 15" stroke="#663300" stroke-width="3" />
    </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 1

Judge's Analysis

    Player 1's image better adheres to the prompt with a more distinct representation of a turtle, complete with a colorful shell pattern, surfing on a clearly defined rainbow wave.

    The starry sky enhances the visual appeal, creating a whimsical and imaginative scene.

    Player 2's image, while creative, lacks clarity in depicting the turtle and the wave, making it less visually cohesive.

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
25
Player 2
20
Rectangles

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

Player 1
2
Player 2
3
Circles

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

Player 1
12
Player 2
12
Ellipses

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

Player 1
6
Player 2
Lines

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

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

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

Player 1
2
Player 2
3

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

The number of elements with stroke attributes in the SVG.

Player 1
10
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
13
Player 2
14

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
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
19
Player 2
11
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
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