猫史档案馆


不起眼的账号

不起眼的账号

Lv.1

QAQ

获赞:272收藏:30浏览:5451作品收藏:44

签名:

回复帖子评论
上一页9 页 / 共 67下一页

【】抠图【】 中回复

center_image

2020-04-30T15:14:43 点赞:0

【聊天】图片聊天 中回复

center_image

2020-04-30T15:35:54 点赞:0

【聊天】图片聊天 中回复

center_image

 

2020-04-30T15:37:14 点赞:0

【聊天】图片聊天 中回复

center_image

2020-04-30T15:37:39 点赞:0

【聊天】图片聊天 中回复

center_image

2020-04-30T15:38:16 点赞:0

【聊天】图片聊天 中回复

center_image

2020-04-30T15:39:34 点赞:0

【聊天】图片聊天 中回复

center_image

2020-04-30T15:40:00 点赞:0

【聊天】图片聊天 中回复

center_image

2020-04-30T15:49:25 点赞:0

【震惊】我是不是发现了什么隐藏的东西! 中回复

洛阳铲往下挖

==================密封线=====================

我挖

    我挖

        我挖

            我挖

                我挖

-=-=-=-=12密封线=-=-=-=-=-

古坟

≈超级密封线≈≈≈≈≈≈

2020-04-30T16:18:50 点赞:0

万能的f12! 中回复

center_image

2020-04-30T16:23:00 点赞:0

万能的f12! 中回复

center_image

2020-04-30T16:56:35 点赞:0

万能的f12! 中回复

center_image

2020-04-30T17:00:23 点赞:0

万能的f12! 中回复

center_image

2020-04-30T17:04:00 点赞:0

万能的f12! 中回复

center_image

2020-04-30T17:08:41 点赞:0

at大家谁会代码 中回复

center_image

2020-04-30T17:16:56 点赞:0

万能的f12! 中回复

center_image

2020-04-30T17:18:48 点赞:0

随便发个玩玩测试手速 中回复

(╯‵□′)╯喵!•••*~●

2020-04-30T18:01:07 点赞:0

流光去哪了 中回复

center_image

2020-04-30T21:41:18 点赞:0

【休闲点击游戏】鼠标的末日播客 中回复

嗯……先把锁解锁了

2020-04-30T23:18:54 点赞:0

【休闲点击游戏】鼠标的末日播客 中回复

center_image

2020-04-30T23:19:23 点赞:0

【休闲点击游戏】鼠标的末日播客 中回复

center_image

2020-04-30T23:20:34 点赞:0

【Python作品分享】Windows电脑关机 中回复

喵没教你坑人得告诉别人吗?

2020-05-01T09:21:25 点赞:0

【源码编辑器Kitten】意见反馈信箱(长期有效) 中回复

@edu...38center_image

2020-05-01T10:19:14 点赞:0

【智慧的厨房】让我们来做几道菜吧! 中回复

center_image

土豆与萝卜

2020-05-01T12:27:35 点赞:0

【智慧的厨房】让我们来做几道菜吧! 中回复

center_image

烤鱼肉

2020-05-01T12:29:01 点赞:0

【智慧的厨房】让我们来做几道菜吧! 中回复

center_image

智慧之汤

2020-05-01T12:37:26 点赞:0

【智慧的厨房】让我们来做几道菜吧! 中回复

大餐center_image

2020-05-01T12:41:40 点赞:0

【Python作品分享】大黄鸭【作品秀】 中回复

import turtle

t = turtle.Pen()
t.hideturtle()
t.speed(0)


def head(color=None):
    is_wounded = False
    if not color:
        color = "yellow"
        is_wounded = True

    t.penup()
    t.goto(0, -100)
    t.pendown()
    t.begin_fill()
    t.color(color)
    t.circle(100)
    t.end_fill()

    if is_wounded:
        # 伤痕
        t.penup()
        t.goto(-60, -50)
        t.setheading(45)
        t.pensize(8)
        t.pencolor("gray")
        t.pendown()
        t.forward(20)
        t.penup()
        t.goto(-40, -50)
        t.pendown()
        t.forward(16)


def face(eye=("up", "black"), nose="darkred", mouth="coral"):
    # 设置画眼睛
    t.pencolor(eye[1])
    t.pensize(5)

    def draw_eye(eye):
        if eye[0] == "down":
            # 左眼睛
            t.penup()
            t.goto(-55, 25)
            t.pendown()
            t.setheading(-70)
            t.circle(20, 140)
            # 右眼睛
            t.penup()
            t.goto(55, 25)
            t.pendown()
            t.setheading(-110)
            t.circle(-20, 140)
        elif eye[0] == "open":
            # 左眼睛
            t.penup()
            t.goto(-55, 25)
            t.pendown()
            t.setheading(-70)
            t.dot(30)
            # 右眼睛
            t.penup()
            t.goto(55, 25)
            t.pendown()
            t.setheading(-110)
            t.dot(30)
        else:
            # 左眼睛
            t.penup()
            t.goto(-55, 15)
            t.pendown()
            t.setheading(70)
            t.circle(-20, 140)
            # 右眼睛
            t.penup()
            t.goto(55, 15)
            t.pendown()
            t.setheading(110)
            t.circle(20, 140)

    def draw_nose(nose):
        t.penup()
        t.goto(-15, -10)
        t.pensize(1)
        t.color(nose)
        t.setheading(-90)
        t.pendown()
        t.begin_fill()
        t.circle(15, 180)
        for i in range(10):
            t.forward(3)
            t.left(7)
        t.left(20)
        t.backward(2)
        t.left(20)
        for i in range(10):
            t.forward(3)
            t.left(7)
        t.end_fill()

    def draw_mouth(mouth):
        # 嘴巴(外)
        t.penup()
        t.goto(12, -10)
        t.setheading(120)
        t.color(mouth)
        t.begin_fill()
        t.circle(14, 120)
        t.setheading(-60)
        t.circle(14, 120)
        t.end_fill()

    draw_eye(eye)
    draw_nose(nose)
    draw_mouth(mouth)


def hands(color="yellow"):
    # 左手
    t.pensize(1)
    t.penup()
    t.goto(-100, 0)
    t.setheading(190)
    t.pendown()
    t.color(color)
    t.begin_fill()
    for i in range(7):
        t.forward(9)
        t.left(6)
    for i in range(19):
        t.forward(1)
        t.left(6)
    for i in range(7):
        t.forward(9)
        t.left(5)
    t.end_fill()
    # 右手
    t.penup()
    t.goto(100, 0)
    t.setheading(-10)
    t.pendown()
    t.fillcolor(color)
    t.begin_fill()
    for i in range(7):
        t.forward(9)
        t.right(6)
    for i in range(19):
        t.forward(1)
        t.right(6)
    for i in range(7):
        t.forward(9)
        t.right(5)
    t.end_fill()


# 引擎
def engines(size=10):
    def engine(x, y):
        t.pensize(1)
        t.setheading(0)
        # 外圆位置
        t.penup()
        t.goto(x, y)
        t.pendown()
        # 画外圆
        t.color("black", "yellow")
        t.begin_fill()
        t.circle(-size)
        t.end_fill()
        # 内圆位置
        t.penup()
        t.goto(x, y - 4)
        t.pendown()
        # 画内圆
        t.setheading(0)
        t.color("black", "brown")
        t.begin_fill()
        t.circle(-size + 4)
        t.end_fill()

    # 左引擎
    engine(-100, -40)
    engine(-130, -40)
    # 右引擎
    engine(100, -40)
    engine(130, -40)


def seat(chair_color="brown"):
    # 护栏
    t.penup()
    t.goto(50, 96)
    t.color("deepskyblue")
    t.pensize(1)
    t.pendown()
    t.begin_fill()
    t.setheading(90)
    t.circle(10, 90)
    t.forward(10)
    t.setheading(90)
    t.forward(10)
    t.circle(5, 90)
    t.forward(50)
    t.circle(5, 90)
    t.forward(10)
    t.setheading(180)
    t.forward(10)
    t.circle(10, 90)
    t.setheading(0)
    t.forward(100)
    t.end_fill()
    # 坐椅
    t.penup()
    t.goto(20, 122)
    t.color(chair_color)
    t.setheading(90)
    t.pendown()
    t.begin_fill()
    t.forward(15)
    t.circle(5, 90)
    t.forward(30)
    t.circle(5, 90)
    t.forward(15)
    t.end_fill()


def glasses(color="skyblue"):
    # 左镜框
    t.penup()
    t.goto(20, 50)
    t.pencolor("brown")
    t.pensize(10)
    t.setheading(0)
    t.pendown()
    t.fillcolor(color)
    t.begin_fill()
    for i in range(2):
        t.forward(60)
        t.circle(8, 90)
        t.forward(30)
        t.circle(8, 90)
    t.end_fill()
    # 右镜框
    t.penup()
    t.goto(-20, 50)
    t.setheading(180)
    t.pendown()
    t.begin_fill()
    for i in range(2):
        t.forward(60)
        t.circle(-8, 90)
        t.forward(30)
        t.circle(-8, 90)
    t.end_fill()
    # 眼镜连接
    t.penup()
    t.goto(-6, 70)
    t.setheading(0)
    t.pensize(20)
    t.pendown()
    t.forward(13)
    # 左镜片光泽
    t.penup()
    t.goto(50, 65)
    t.setheading(45)
    t.pensize(8)
    t.pencolor("white")
    t.pendown()
    t.forward(25)
    t.penup()
    t.goto(70, 65)
    t.pendown()
    t.forward(12)
    # 右镜片光泽
    t.penup()
    t.goto(-50, 65)
    t.setheading(45)
    t.pensize(8)
    t.pencolor("white")
    t.pendown()
    t.forward(25)
    t.penup()
    t.goto(-30, 65)
    t.pendown()
    t.forward(12)


# 开始绘制大黄鸡
head("yellow")
# 请在下方 face() 指令中输入代码,修改大黄鸡的状态
face(eye=("open", "grey"), nose="red", mouth="black")
# ----------------------------
hands("yellow")
seat()
glasses("green")
engines(15)

2020-05-01T13:45:46 点赞:0

给我的作品点个赞好吗?!~ 中回复

挖坟

2020-05-01T15:11:20 点赞:0

【智慧的厨房】让我们来做几道菜吧! 中回复

center_image

橙汁

2020-05-01T15:20:57 点赞:0