There is a woman sitting on a step with a plant in the background

Prompts
Copy
```import turtle
# Configuração inicial
t = turtle
.
Turtle()
t
.
speed(0)
t
.
penup()
t
.
setposition(-200
,
0)
t
.
pendown()
# Desenho a mulher ruiva sentada em uma cadeira
t
.
color("#FFA07A") # cor da pele
t
.
begin_fill()
t
.
circle(50)
t
.
end_fill()
t
.
right(90)
t
.
forward(100)
t
.
right(90)
t
.
forward(50)
t
.
color("yellow") # camisa amarela
t
.
begin_fill()
t
.
forward(100)
t
.
right(90)
t
.
forward(50)
t
.
right(90)
t
.
forward(100)
t
.
end_fill()
t
.
right(90)
t
.
forward(50)
t
.
color("black") # calça jeans preta
t
.
begin_fill()
t
.
forward(30)
t
.
right(90)
t
.
forward(10)
t
.
right(90)
t
.
forward(30)
t
.
right(90)
t
.
forward(10)
t
.
end_fill()
t
.
right(90)
t
.
forward(50)
t
.
color("green") # tênis verde
t
.
begin_fill()
t
.
circle(10)
t
.
end_fill()
t
.
right(90)
t
.
forward(50)
# Desenho a garota loira sentada no colo da mulher ruiva
t
.
color("#FFDAB9") # outra cor da pele
t
.
right(180)
t
.
penup()
t
.
forward(50)
t
.
left(90)
t
.
forward(50)
t
.
pendown()
t
.
right(90)
t
.
begin_fill()
t
.
circle(30)
t
.
end_fill()
t
.
penup()
t
.
left(90)
t
.
forward(70)
t
.
right(90)
t
.
pendown()
t
.
color("white") # blusa branca
t
.
begin_fill()
t
.
forward(50)
t
.
right(90)
t
.
forward(30)
t
.
right(90)
t
.
forward(50)
t
.
end_fill()
t
.
right(90)
t
.
forward(30)
t
.
color("purple") # calça jeans roxa
t
.
begin_fill()
t
.
forward(30)
t
.
right(90)
t
.
forward(10)
t
.
right(90)
t
.
forward(30)
t
.
right(90)
t
.
forward(10)
t
.
end_fill()
t
.
right(90)
t
.
forward(50)
t
.
color("gray") # tênis cinza
t
.
begin_fill()
t
.
circle(10)
t
.
end_fill()
# Finalizaçãoturtle
.
done()```
INFO
Checkpoint & LoRA

Checkpoint
ReV Animated
0 comment
1
3
0