Hi i am someone who makes decks in Castle

I am from Mexico.
I have 6 cats

NOTE
All my work are NOT copyright free, i protect my own work. thats why remixes are off.
if you recreate my decks, give me credit

ah yes a circle

import turtle
import math
# Setup
t = turtle.Turtle()
t.speed(0)
turtle.bgcolor("black")
t.color("cyan")
t.hideturtle()
# Circle made of squares
radius = 100   # Size of the circle
square_size = 10   # Each small square size
steps = 100    # How many small squares to draw around the circle
for i in range(steps):
    angle = 2 * math.pi * i / steps
    x = radius * math.cos(angle)
    y = radius * math.sin(angle)

    t.penup()
    t.goto(x, y)
    t.pendown()

    # Draw a square
    for _ in range(4):
        t.forward(square_size)
        t.right(90)
turtle.done()

PLEASE DO NOT BUG ME BETWEEN 13:00-7:00

platforms you will normally see me in

YouTube
Castle
ROBLOX

Edit

Pub: 12 Oct 2025 09:51 UTC

Edit: 13 Oct 2025 19:01 UTC

Views: 9