use of com.almasb.fxgl.core.math.Vec2 in project FXGL by AlmasB.
the class GearJoint method solveVelocityConstraints.
@Override
public void solveVelocityConstraints(SolverData data) {
Vec2 vA = data.velocities[m_indexA].v;
float wA = data.velocities[m_indexA].w;
Vec2 vB = data.velocities[m_indexB].v;
float wB = data.velocities[m_indexB].w;
Vec2 vC = data.velocities[m_indexC].v;
float wC = data.velocities[m_indexC].w;
Vec2 vD = data.velocities[m_indexD].v;
float wD = data.velocities[m_indexD].w;
Vec2 temp1 = pool.popVec2();
Vec2 temp2 = pool.popVec2();
float Cdot = Vec2.dot(m_JvAC, temp1.set(vA).subLocal(vC)) + Vec2.dot(m_JvBD, temp2.set(vB).subLocal(vD));
Cdot += (m_JwA * wA - m_JwC * wC) + (m_JwB * wB - m_JwD * wD);
pool.pushVec2(2);
float impulse = -m_mass * Cdot;
m_impulse += impulse;
vA.x += (m_mA * impulse) * m_JvAC.x;
vA.y += (m_mA * impulse) * m_JvAC.y;
wA += m_iA * impulse * m_JwA;
vB.x += (m_mB * impulse) * m_JvBD.x;
vB.y += (m_mB * impulse) * m_JvBD.y;
wB += m_iB * impulse * m_JwB;
vC.x -= (m_mC * impulse) * m_JvAC.x;
vC.y -= (m_mC * impulse) * m_JvAC.y;
wC -= m_iC * impulse * m_JwC;
vD.x -= (m_mD * impulse) * m_JvBD.x;
vD.y -= (m_mD * impulse) * m_JvBD.y;
wD -= m_iD * impulse * m_JwD;
// data.velocities[m_indexA].v = vA;
data.velocities[m_indexA].w = wA;
// data.velocities[m_indexB].v = vB;
data.velocities[m_indexB].w = wB;
// data.velocities[m_indexC].v = vC;
data.velocities[m_indexC].w = wC;
// data.velocities[m_indexD].v = vD;
data.velocities[m_indexD].w = wD;
}
use of com.almasb.fxgl.core.math.Vec2 in project FXGL by AlmasB.
the class DistanceJoint method solveVelocityConstraints.
@Override
public void solveVelocityConstraints(final SolverData data) {
Vec2 vA = data.velocities[m_indexA].v;
float wA = data.velocities[m_indexA].w;
Vec2 vB = data.velocities[m_indexB].v;
float wB = data.velocities[m_indexB].w;
final Vec2 vpA = pool.popVec2();
final Vec2 vpB = pool.popVec2();
// Cdot = dot(u, v + cross(w, r))
Vec2.crossToOutUnsafe(wA, m_rA, vpA);
vpA.addLocal(vA);
Vec2.crossToOutUnsafe(wB, m_rB, vpB);
vpB.addLocal(vB);
float Cdot = Vec2.dot(m_u, vpB.subLocal(vpA));
float impulse = -m_mass * (Cdot + m_bias + m_gamma * m_impulse);
m_impulse += impulse;
float Px = impulse * m_u.x;
float Py = impulse * m_u.y;
vA.x -= m_invMassA * Px;
vA.y -= m_invMassA * Py;
wA -= m_invIA * (m_rA.x * Py - m_rA.y * Px);
vB.x += m_invMassB * Px;
vB.y += m_invMassB * Py;
wB += m_invIB * (m_rB.x * Py - m_rB.y * Px);
data.velocities[m_indexA].w = wA;
data.velocities[m_indexB].w = wB;
pool.pushVec2(2);
}
use of com.almasb.fxgl.core.math.Vec2 in project FXGL by AlmasB.
the class DistanceJoint method initVelocityConstraints.
@Override
public void initVelocityConstraints(final SolverData data) {
m_indexA = m_bodyA.m_islandIndex;
m_indexB = m_bodyB.m_islandIndex;
m_localCenterA.set(m_bodyA.m_sweep.localCenter);
m_localCenterB.set(m_bodyB.m_sweep.localCenter);
m_invMassA = m_bodyA.m_invMass;
m_invMassB = m_bodyB.m_invMass;
m_invIA = m_bodyA.m_invI;
m_invIB = m_bodyB.m_invI;
Vec2 cA = data.positions[m_indexA].c;
float aA = data.positions[m_indexA].a;
Vec2 vA = data.velocities[m_indexA].v;
float wA = data.velocities[m_indexA].w;
Vec2 cB = data.positions[m_indexB].c;
float aB = data.positions[m_indexB].a;
Vec2 vB = data.velocities[m_indexB].v;
float wB = data.velocities[m_indexB].w;
final Rotation qA = pool.popRot();
final Rotation qB = pool.popRot();
qA.set(aA);
qB.set(aB);
// use m_u as temporary variable
Rotation.mulToOutUnsafe(qA, m_u.set(m_localAnchorA).subLocal(m_localCenterA), m_rA);
Rotation.mulToOutUnsafe(qB, m_u.set(m_localAnchorB).subLocal(m_localCenterB), m_rB);
m_u.set(cB).addLocal(m_rB).subLocal(cA).subLocal(m_rA);
pool.pushRot(2);
// Handle singularity.
float length = m_u.length();
if (length > JBoxSettings.linearSlop) {
m_u.x *= 1.0f / length;
m_u.y *= 1.0f / length;
} else {
m_u.set(0.0f, 0.0f);
}
float crAu = Vec2.cross(m_rA, m_u);
float crBu = Vec2.cross(m_rB, m_u);
float invMass = m_invMassA + m_invIA * crAu * crAu + m_invMassB + m_invIB * crBu * crBu;
// Compute the effective mass matrix.
m_mass = invMass != 0.0f ? 1.0f / invMass : 0.0f;
if (m_frequencyHz > 0.0f) {
float C = length - m_length;
// Frequency
float omega = 2.0f * (float) FXGLMath.PI * m_frequencyHz;
// Damping coefficient
float d = 2.0f * m_mass * m_dampingRatio * omega;
// Spring stiffness
float k = m_mass * omega * omega;
// magic formulas
float h = data.step.dt;
m_gamma = h * (d + h * k);
m_gamma = m_gamma != 0.0f ? 1.0f / m_gamma : 0.0f;
m_bias = C * h * k * m_gamma;
invMass += m_gamma;
m_mass = invMass != 0.0f ? 1.0f / invMass : 0.0f;
} else {
m_gamma = 0.0f;
m_bias = 0.0f;
}
if (data.step.warmStarting) {
// Scale the impulse to support a variable time step.
m_impulse *= data.step.dtRatio;
Vec2 P = pool.popVec2();
P.set(m_u).mulLocal(m_impulse);
vA.x -= m_invMassA * P.x;
vA.y -= m_invMassA * P.y;
wA -= m_invIA * Vec2.cross(m_rA, P);
vB.x += m_invMassB * P.x;
vB.y += m_invMassB * P.y;
wB += m_invIB * Vec2.cross(m_rB, P);
pool.pushVec2(1);
} else {
m_impulse = 0.0f;
}
// data.velocities[m_indexA].v.set(vA);
data.velocities[m_indexA].w = wA;
// data.velocities[m_indexB].v.set(vB);
data.velocities[m_indexB].w = wB;
}
use of com.almasb.fxgl.core.math.Vec2 in project FXGL by AlmasB.
the class MotorJoint method solveVelocityConstraints.
@Override
public void solveVelocityConstraints(SolverData data) {
final Vec2 vA = data.velocities[m_indexA].v;
float wA = data.velocities[m_indexA].w;
final Vec2 vB = data.velocities[m_indexB].v;
float wB = data.velocities[m_indexB].w;
float mA = m_invMassA;
float mB = m_invMassB;
float iA = m_invIA;
float iB = m_invIB;
float h = data.step.dt;
float inv_h = data.step.inv_dt;
final Vec2 temp = pool.popVec2();
// Solve angular friction
{
float Cdot = wB - wA + inv_h * correctionFactor * m_angularError;
float impulse = -m_angularMass * Cdot;
float oldImpulse = angularImpulse;
float maxImpulse = h * maxTorque;
angularImpulse = FXGLMath.clamp(angularImpulse + impulse, -maxImpulse, maxImpulse);
impulse = angularImpulse - oldImpulse;
wA -= iA * impulse;
wB += iB * impulse;
}
final Vec2 Cdot = pool.popVec2();
// Solve linear friction
{
// Cdot = vB + b2Cross(wB, m_rB) - vA - b2Cross(wA, m_rA) + inv_h * m_correctionFactor *
// m_linearError;
Cdot.x = vB.x + -wB * m_rB.y - vA.x - -wA * m_rA.y + inv_h * correctionFactor * m_linearError.x;
Cdot.y = vB.y + wB * m_rB.x - vA.y - wA * m_rA.x + inv_h * correctionFactor * m_linearError.y;
final Vec2 impulse = temp;
Mat22.mulToOutUnsafe(m_linearMass, Cdot, impulse);
impulse.negateLocal();
final Vec2 oldImpulse = pool.popVec2();
oldImpulse.set(linearImpulse);
linearImpulse.addLocal(impulse);
float maxImpulse = h * maxForce;
if (linearImpulse.lengthSquared() > maxImpulse * maxImpulse) {
linearImpulse.getLengthAndNormalize();
linearImpulse.mulLocal(maxImpulse);
}
impulse.x = linearImpulse.x - oldImpulse.x;
impulse.y = linearImpulse.y - oldImpulse.y;
vA.x -= mA * impulse.x;
vA.y -= mA * impulse.y;
wA -= iA * (m_rA.x * impulse.y - m_rA.y * impulse.x);
vB.x += mB * impulse.x;
vB.y += mB * impulse.y;
wB += iB * (m_rB.x * impulse.y - m_rB.y * impulse.x);
}
pool.pushVec2(3);
// data.velocities[m_indexA].v.set(vA);
data.velocities[m_indexA].w = wA;
// data.velocities[m_indexB].v.set(vB);
data.velocities[m_indexB].w = wB;
}
use of com.almasb.fxgl.core.math.Vec2 in project FXGL by AlmasB.
the class Body method getLinearVelocityFromLocalPoint.
/**
* Get the world velocity of a local point.
*
* @param localPoint point in local coordinates.
* @return the world velocity of a point.
*/
public Vec2 getLinearVelocityFromLocalPoint(Vec2 localPoint) {
Vec2 out = new Vec2();
getLinearVelocityFromLocalPointToOut(localPoint, out);
return out;
}
Aggregations