【HelloKitty团队项目】Alpha阶段初始任务分配

项目内容
这个作业属于哪个课程2023北航软件工程
这个作业的要求在哪里团队项目-Alpha阶段项目计划
我在这个课程的目标是学习软件工程技术,完成团队开发流程
这个作业在哪个具体方面帮助我实现目标确定Alpha阶段功能实现与技术规范

Alpha阶段初始任务分配

以下是我们Alpha阶段的issues总览,我们结合功能设计与UI设计的总体需求,设置了一系列细分子任务,并将每个模块分配给个人。其中具体子任务的调度将在每日例会时具体协商进行。

  • 其中,对于绝大多数子任务,我们保证了单个子任务的粒度控制在预期完成时间不超过8小时。

  • 同时存在一些待后续开发过程中拆解的父任务,暂且用较高的工时作估计。

最终,我们预期Alpha阶段开发耗时共计230h左右。

在这里插入图片描述
在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
以下是使用Python和Pygame库绘制Hello Kitty的代码,注释详细说明了每个步骤: ```python import pygame # 初始化Pygame库 pygame.init() # 设置窗口大小和标题 size = (700, 500) screen = pygame.display.set_mode(size) pygame.display.set_caption("Hello Kitty") # 设置颜色 BLACK = (0, 0, 0) WHITE = (255, 255, 255) PINK = (255, 192, 203) # 绘制Hello Kitty def draw_kitty(screen, x, y): # 绘制头部 pygame.draw.ellipse(screen, WHITE, [35 + x, 20 + y, 200, 200]) pygame.draw.ellipse(screen, BLACK, [50 + x, 70 + y, 30, 20]) pygame.draw.ellipse(screen, BLACK, [150 + x, 70 + y, 30, 20]) pygame.draw.ellipse(screen, PINK, [75 + x, 100 + y, 100, 100]) pygame.draw.ellipse(screen, BLACK, [85 + x, 130 + y, 20, 20]) pygame.draw.ellipse(screen, BLACK, [135 + x, 130 + y, 20, 20]) pygame.draw.rect(screen, BLACK, [100 + x, 170 + y, 50, 20]) pygame.draw.ellipse(screen, BLACK, [95 + x, 160 + y, 20, 20]) pygame.draw.ellipse(screen, BLACK, [135 + x, 160 + y, 20, 20]) pygame.draw.polygon(screen, BLACK, [[100 + x, 110 + y], [110 + x, 120 + y], [90 + x, 120 + y]]) pygame.draw.polygon(screen, BLACK, [[150 + x, 110 + y], [160 + x, 120 + y], [140 + x, 120 + y]]) # 绘制身体 pygame.draw.ellipse(screen, WHITE, [20 + x, 200 + y, 260, 200]) pygame.draw.ellipse(screen, BLACK, [20 + x, 200 + y, 260, 200], 1) pygame.draw.ellipse(screen, PINK, [70 + x, 250 + y, 160, 120]) pygame.draw.ellipse(screen, BLACK, [100 + x, 280 + y, 20, 20]) pygame.draw.ellipse(screen, BLACK, [170 + x, 280 + y, 20, 20]) pygame.draw.rect(screen, BLACK, [120 + x, 320 + y, 60, 20]) pygame.draw.ellipse(screen, BLACK, [115 + x, 310 + y, 20, 20]) pygame.draw.ellipse(screen, BLACK, [165 + x, 310 + y, 20, 20]) pygame.draw.polygon(screen, BLACK, [[120 + x, 260 + y], [130 + x, 270 + y], [110 + x, 270 + y]]) pygame.draw.polygon(screen, BLACK, [[190 + x, 260 + y], [200 + x, 270 + y], [180 + x, 270 + y]]) # 设置循环标志 done = False # 游戏循环 while not done: for event in pygame.event.get(): if event.type == pygame.QUIT: done = True # 设置背景颜色 screen.fill(BLACK) # 绘制Hello Kitty draw_kitty(screen, 200, 100) # 更新屏幕 pygame.display.flip() # 退出Pygame库 pygame.quit() ```

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值