• 团队项目4--第二篇随笔


    1、站立式会议

    进度

    成员 昨日完成任务 遇到的困难
    罗欢 坦克建模出现了一些小bug
    石晓邗 变量交互时出现偏差,无法正常建模
    梁业昌 制作坦克模型时,无法对模型较为细致的建模,导致出现了边缘磨损
    温德华 在代码交接方面有困难
    余廷锋 变量的创建与队友不一致

     2、燃尽图

    3、代码签入记录

    4、恰当的项目程序

    主要代码

    public class Shot implements Runnable{
        int x;
        int y;
        int direct;
        int speed = 6;
        boolean isLive = true;
        public Shot(int x,int y,int direct){
            this.x=x;
            this.y=y;
            this.direct = direct;
        }
    
    
    
    
    public class Tank {
        int x;
        int y;
        int direct=0;
        int speed=4;
            int color=0;//判断是否死亡
        boolean isLive =true;
        public int getColor() {
            return color;
        }
    public void setColor(int color) {
            this.color = color;
        }
    public int getSpeed() {
            return speed;
        }
    public void setSpeed(int speed) {
            this.speed = speed;
        }
    public int getDirect() {
            return direct;
        }
    public void setDirect(int direct) {
            this.direct = direct;
        }
        public Tank(int x,int y){
            this.x = x;
            this.y = y;
        }
        public int getX() {
            return x;
        }
        public void setX(int x) {
            this.x = x;
        }
        public int getY() {
            return y;
        }
        public void setY(int y) {
            this.y = y;
        }
    }

    5、总结

    成员 总结
    罗欢 在一天的合作中,我们代码的交接做的不是很好。
    石晓邗 基本上完成了第一天的任务
    梁业昌 坦克模型的优化有点难
    温德华 总体上还行
    余廷锋 代码的交接做得不好
  • 相关阅读:
    springboot 重写 AuthorizationFilter
    Docker compose
    javap c 字节码含义
    漏洞扫描工具nessus、rapid7 insightvm、openvas安装&简单使用
    共享手机中的VXN流量给其他设备使用
    mobaxterm会话同步
    symbol类型
    Error: Cannot find module 'typescript/package.json'
    关于vue的一些config文件
    关于参数加密
  • 原文地址:https://www.cnblogs.com/jmrlu/p/12985067.html
Copyright © 2020-2023  润新知