本文整理了Java中org.jbox2d.dynamics.Body.getInertia()
方法的一些代码示例,展示了Body.getInertia()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Body.getInertia()
方法的具体详情如下:
包路径:org.jbox2d.dynamics.Body
类名称:Body
方法名:getInertia
[英]Get the central rotational inertia of the body.
[中]得到物体的中心转动惯量。
代码示例来源:origin: libgdx/libgdx
/** Get the rotational inertia of the body about the local origin.
* @return the rotational inertia, usually in kg-m^2. */
public float getInertia () {
return body.getInertia();
}
代码示例来源:origin: libgdx/libgdx
Vec2 bp = b.getWorldCenter();
float bm = b.getMass();
float bI = b.getInertia() - bm * b.getLocalCenter().lengthSquared();
float invBm = bm > 0 ? 1 / bm : 0;
float invBI = bI > 0 ? 1 / bI : 0;
代码示例来源:origin: jbox2d/jbox2d
Vec2 bp = b.getWorldCenter();
float bm = b.getMass();
float bI = b.getInertia() - bm * b.getLocalCenter().lengthSquared();
float invBm = bm > 0 ? 1 / bm : 0;
float invBI = bI > 0 ? 1 / bI : 0;
代码示例来源:origin: jbox2d/jbox2d
float I = body.getInertia();
float mass = body.getMass();
代码示例来源:origin: andmizi/MobikeTags
Vec2 bp = b.getWorldCenter();
float bm = b.getMass();
float bI = b.getInertia() - bm * b.getLocalCenter().lengthSquared();
float invBm = bm > 0 ? 1 / bm : 0;
float invBI = bI > 0 ? 1 / bI : 0;
代码示例来源:origin: com.github.almasb/fxgl-physics
Vec2 bp = b.getWorldCenter();
float bm = b.getMass();
float bI = b.getInertia() - bm * b.getLocalCenter().lengthSquared();
float invBm = bm > 0 ? 1 / bm : 0;
float invBI = bI > 0 ? 1 / bI : 0;
代码示例来源:origin: org.jbox2d/jbox2d-testbed
float I = body.getInertia();
float mass = body.getMass();
内容来源于网络,如有侵权,请联系作者删除!