JavaScript 球碰撞
我正在尝试创建一个具有简单物理原理的简单 JavaScript 游戏。我可以确定两个球何时碰撞,但我在处理碰撞时遇到问题。
有谁知道这方面有任何有用的教程吗?我已经在互联网上搜索了几天,但似乎找不到任何东西。
I am trying to create a simple javascript game with simple physics. I can determine when 2 balls are colliding but I have having problems with handling the collision.
Does anyone know of any useful tutorials on this? I've been searching the internet for a couple days but can't seem to find anything.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 HTML5 Canvas 进行 JavaScript 游戏、动画和模拟的物理
是一本关于用 JavaScript 进行物理模拟建模的书。
虽然本书首先向读者介绍了物理学中的一些简单概念以及如何在 JavaScript 中对其进行建模,但这本书将假设您具备一些物理学基础知识并且知道如何使用 JavaScript 进行编程。
Physics for JavaScript Games, Animation, and Simulations with HTML5 Canvas
is a Book all about modeling Physics simulations in JavaScript.
Though this book starts off by introducing the reader to some simple concepts in Physics and how it can be modeled in JavaScript, this books will assume you have some basic knowledge in Physics and know how to program in JavaScript.
在英国,这将是 A-level 数学,所以不会太高级。我认为您需要的短语是“弹性碰撞”。该页面有一些您需要的公式。
In the UK, this would be A-level maths, so not too advanced. I think the phrase you need is "elastic collision". That page has some of the formulae you need.