标签:projectile

  • 物体的弹丸运动 - java

    时间:2020-7-21

    我的对象当前仅使用以下代码以设定角度沿直线移动: this.time = this.time + deltaTime; // Vertical : Speed * Sine * Angle double vy = (this.speed * Math.sin(this.angle)) + this.ax*this.time ; // Horizontal : […]