Qualify calls to certain functions from the cmath library.
This commit is contained in:
@@ -18,6 +18,8 @@ subject to the following restrictions:
|
|||||||
#include "LinearMath/btIDebugDraw.h"
|
#include "LinearMath/btIDebugDraw.h"
|
||||||
#include "MotorDemo.h"
|
#include "MotorDemo.h"
|
||||||
|
|
||||||
|
#include <cmath>
|
||||||
|
|
||||||
#include "LinearMath/btAlignedObjectArray.h"
|
#include "LinearMath/btAlignedObjectArray.h"
|
||||||
class btBroadphaseInterface;
|
class btBroadphaseInterface;
|
||||||
class btCollisionShape;
|
class btCollisionShape;
|
||||||
@@ -158,8 +160,8 @@ public:
|
|||||||
for (i = 0; i < NUM_LEGS; i++)
|
for (i = 0; i < NUM_LEGS; i++)
|
||||||
{
|
{
|
||||||
float fAngle = 2 * M_PI * i / NUM_LEGS;
|
float fAngle = 2 * M_PI * i / NUM_LEGS;
|
||||||
float fSin = sin(fAngle);
|
float fSin = std::sin(fAngle);
|
||||||
float fCos = cos(fAngle);
|
float fCos = std::cos(fAngle);
|
||||||
|
|
||||||
transform.setIdentity();
|
transform.setIdentity();
|
||||||
btVector3 vBoneOrigin = btVector3(btScalar(fCos * (fBodySize + 0.5 * fLegLength)), btScalar(fHeight), btScalar(fSin * (fBodySize + 0.5 * fLegLength)));
|
btVector3 vBoneOrigin = btVector3(btScalar(fCos * (fBodySize + 0.5 * fLegLength)), btScalar(fHeight), btScalar(fSin * (fBodySize + 0.5 * fLegLength)));
|
||||||
@@ -197,8 +199,8 @@ public:
|
|||||||
for (i = 0; i < NUM_LEGS; i++)
|
for (i = 0; i < NUM_LEGS; i++)
|
||||||
{
|
{
|
||||||
float fAngle = 2 * M_PI * i / NUM_LEGS;
|
float fAngle = 2 * M_PI * i / NUM_LEGS;
|
||||||
float fSin = sin(fAngle);
|
float fSin = std::sin(fAngle);
|
||||||
float fCos = cos(fAngle);
|
float fCos = std::cos(fAngle);
|
||||||
|
|
||||||
// hip joints
|
// hip joints
|
||||||
localA.setIdentity();
|
localA.setIdentity();
|
||||||
|
|||||||
@@ -15,6 +15,8 @@ subject to the following restrictions:
|
|||||||
|
|
||||||
#include "NN3DWalkers.h"
|
#include "NN3DWalkers.h"
|
||||||
|
|
||||||
|
#include <cmath>
|
||||||
|
|
||||||
#include "btBulletDynamicsCommon.h"
|
#include "btBulletDynamicsCommon.h"
|
||||||
|
|
||||||
#include "LinearMath/btIDebugDraw.h"
|
#include "LinearMath/btIDebugDraw.h"
|
||||||
@@ -282,8 +284,8 @@ public:
|
|||||||
for (i = 0; i < NUM_LEGS; i++)
|
for (i = 0; i < NUM_LEGS; i++)
|
||||||
{
|
{
|
||||||
float footAngle = 2 * SIMD_PI * i / NUM_LEGS; // legs are uniformly distributed around the root body
|
float footAngle = 2 * SIMD_PI * i / NUM_LEGS; // legs are uniformly distributed around the root body
|
||||||
float footYUnitPosition = sin(footAngle); // y position of the leg on the unit circle
|
float footYUnitPosition = std::sin(footAngle); // y position of the leg on the unit circle
|
||||||
float footXUnitPosition = cos(footAngle); // x position of the leg on the unit circle
|
float footXUnitPosition = std::cos(footAngle); // x position of the leg on the unit circle
|
||||||
|
|
||||||
transform.setIdentity();
|
transform.setIdentity();
|
||||||
btVector3 legCOM = btVector3(btScalar(footXUnitPosition * (gRootBodyRadius + 0.5 * gLegLength)), btScalar(rootAboveGroundHeight), btScalar(footYUnitPosition * (gRootBodyRadius + 0.5 * gLegLength)));
|
btVector3 legCOM = btVector3(btScalar(footXUnitPosition * (gRootBodyRadius + 0.5 * gLegLength)), btScalar(rootAboveGroundHeight), btScalar(footYUnitPosition * (gRootBodyRadius + 0.5 * gLegLength)));
|
||||||
@@ -1017,7 +1019,7 @@ void NN3DWalkersExample::updateEvaluations(const btScalar timeSinceLastTick)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// apply the activation function
|
// apply the activation function
|
||||||
targetAngle = (tanh(targetAngle) + 1.0f) * 0.5f;
|
targetAngle = (std::tanh(targetAngle) + 1.0f) * 0.5f;
|
||||||
}
|
}
|
||||||
btScalar targetLimitAngle = hingeC->getLowerLimit() + targetAngle * (hingeC->getUpperLimit() - hingeC->getLowerLimit());
|
btScalar targetLimitAngle = hingeC->getLowerLimit() + targetAngle * (hingeC->getUpperLimit() - hingeC->getLowerLimit());
|
||||||
btScalar currentAngle = hingeC->getHingeAngle();
|
btScalar currentAngle = hingeC->getHingeAngle();
|
||||||
|
|||||||
@@ -48,6 +48,8 @@ subject to the following restrictions:
|
|||||||
|
|
||||||
#include <stdio.h> //printf debugging
|
#include <stdio.h> //printf debugging
|
||||||
|
|
||||||
|
#include <cmath>
|
||||||
|
|
||||||
#if defined(BT_USE_DOUBLE_PRECISION)
|
#if defined(BT_USE_DOUBLE_PRECISION)
|
||||||
#define btglLoadMatrix glLoadMatrixd
|
#define btglLoadMatrix glLoadMatrixd
|
||||||
#define btglMultMatrix glMultMatrixd
|
#define btglMultMatrix glMultMatrixd
|
||||||
@@ -149,19 +151,19 @@ void GL_ShapeDrawer::drawSphere(btScalar radius, int lats, int longs)
|
|||||||
for (i = 0; i <= lats; i++)
|
for (i = 0; i <= lats; i++)
|
||||||
{
|
{
|
||||||
btScalar lat0 = SIMD_PI * (-btScalar(0.5) + (btScalar)(i - 1) / lats);
|
btScalar lat0 = SIMD_PI * (-btScalar(0.5) + (btScalar)(i - 1) / lats);
|
||||||
btScalar z0 = radius * sin(lat0);
|
btScalar z0 = radius * std::sin(lat0);
|
||||||
btScalar zr0 = radius * cos(lat0);
|
btScalar zr0 = radius * std::cos(lat0);
|
||||||
|
|
||||||
btScalar lat1 = SIMD_PI * (-btScalar(0.5) + (btScalar)i / lats);
|
btScalar lat1 = SIMD_PI * (-btScalar(0.5) + (btScalar)i / lats);
|
||||||
btScalar z1 = radius * sin(lat1);
|
btScalar z1 = radius * std::sin(lat1);
|
||||||
btScalar zr1 = radius * cos(lat1);
|
btScalar zr1 = radius * std::cos(lat1);
|
||||||
|
|
||||||
glBegin(GL_QUAD_STRIP);
|
glBegin(GL_QUAD_STRIP);
|
||||||
for (j = 0; j <= longs; j++)
|
for (j = 0; j <= longs; j++)
|
||||||
{
|
{
|
||||||
btScalar lng = 2 * SIMD_PI * (btScalar)(j - 1) / longs;
|
btScalar lng = 2 * SIMD_PI * (btScalar)(j - 1) / longs;
|
||||||
btScalar x = cos(lng);
|
btScalar x = std::cos(lng);
|
||||||
btScalar y = sin(lng);
|
btScalar y = std::sin(lng);
|
||||||
glNormal3f(x * zr1, y * zr1, z1);
|
glNormal3f(x * zr1, y * zr1, z1);
|
||||||
glVertex3f(x * zr1, y * zr1, z1);
|
glVertex3f(x * zr1, y * zr1, z1);
|
||||||
glNormal3f(x * zr0, y * zr0, z0);
|
glNormal3f(x * zr0, y * zr0, z0);
|
||||||
@@ -906,4 +908,4 @@ void GL_ShapeDrawer::drawScene(const btDiscreteDynamicsWorld* dynamicsWorld, boo
|
|||||||
glDisable(GL_CULL_FACE);
|
glDisable(GL_CULL_FACE);
|
||||||
drawSceneInternal(dynamicsWorld, 0, cameraUpAxis);
|
drawSceneInternal(dynamicsWorld, 0, cameraUpAxis);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,8 +15,9 @@
|
|||||||
|
|
||||||
#include "MultiPendulum.h"
|
#include "MultiPendulum.h"
|
||||||
|
|
||||||
#include <vector> // TODO: Should I use another data structure?
|
#include <cmath>
|
||||||
#include <iterator>
|
#include <iterator>
|
||||||
|
#include <vector> // TODO: Should I use another data structure?
|
||||||
|
|
||||||
#include "btBulletDynamicsCommon.h"
|
#include "btBulletDynamicsCommon.h"
|
||||||
#include "LinearMath/btVector3.h"
|
#include "LinearMath/btVector3.h"
|
||||||
@@ -159,7 +160,7 @@ void MultiPendulumExample::initPhysics()
|
|||||||
m_collisionShapes.push_back(pendulumShape);
|
m_collisionShapes.push_back(pendulumShape);
|
||||||
|
|
||||||
// create multi-pendulum
|
// create multi-pendulum
|
||||||
createMultiPendulum(pendulumShape, floor(gPendulaQty), position,
|
createMultiPendulum(pendulumShape, std::floor(gPendulaQty), position,
|
||||||
gInitialPendulumLength, pendulumMass);
|
gInitialPendulumLength, pendulumMass);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -15,8 +15,9 @@
|
|||||||
|
|
||||||
#include "NewtonsCradle.h"
|
#include "NewtonsCradle.h"
|
||||||
|
|
||||||
#include <vector> // TODO: Should I use another data structure?
|
#include <cmath>
|
||||||
#include <iterator>
|
#include <iterator>
|
||||||
|
#include <vector> // TODO: Should I use another data structure?
|
||||||
|
|
||||||
#include "btBulletDynamicsCommon.h"
|
#include "btBulletDynamicsCommon.h"
|
||||||
#include "LinearMath/btVector3.h"
|
#include "LinearMath/btVector3.h"
|
||||||
@@ -158,7 +159,7 @@ void NewtonsCradleExample::initPhysics()
|
|||||||
btSphereShape* pendulumShape = new btSphereShape(gSphereRadius);
|
btSphereShape* pendulumShape = new btSphereShape(gSphereRadius);
|
||||||
m_collisionShapes.push_back(pendulumShape);
|
m_collisionShapes.push_back(pendulumShape);
|
||||||
|
|
||||||
for (int i = 0; i < floor(gPendulaQty); i++)
|
for (int i = 0; i < std::floor(gPendulaQty); i++)
|
||||||
{
|
{
|
||||||
// create pendulum
|
// create pendulum
|
||||||
createPendulum(pendulumShape, position, gInitialPendulumLength, pendulumMass);
|
createPendulum(pendulumShape, position, gInitialPendulumLength, pendulumMass);
|
||||||
|
|||||||
@@ -15,8 +15,9 @@
|
|||||||
|
|
||||||
#include "NewtonsRopeCradle.h"
|
#include "NewtonsRopeCradle.h"
|
||||||
|
|
||||||
#include <vector> // TODO: Should I use another data structure?
|
#include <cmath>
|
||||||
#include <iterator>
|
#include <iterator>
|
||||||
|
#include <vector> // TODO: Should I use another data structure?
|
||||||
|
|
||||||
#include "btBulletDynamicsCommon.h"
|
#include "btBulletDynamicsCommon.h"
|
||||||
#include "LinearMath/btVector3.h"
|
#include "LinearMath/btVector3.h"
|
||||||
@@ -204,7 +205,7 @@ void NewtonsRopeCradleExample::initPhysics()
|
|||||||
btSphereShape* pendulumShape = new btSphereShape(gSphereRadius);
|
btSphereShape* pendulumShape = new btSphereShape(gSphereRadius);
|
||||||
m_collisionShapes.push_back(pendulumShape);
|
m_collisionShapes.push_back(pendulumShape);
|
||||||
|
|
||||||
for (int i = 0; i < floor(gPendulaQty); i++)
|
for (int i = 0; i < std::floor(gPendulaQty); i++)
|
||||||
{
|
{
|
||||||
// create pendulum
|
// create pendulum
|
||||||
createRopePendulum(pendulumShape, position, orientation, gInitialPendulumWidth,
|
createRopePendulum(pendulumShape, position, orientation, gInitialPendulumWidth,
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ subject to the following restrictions:
|
|||||||
|
|
||||||
#include <stdio.h> //printf debugging
|
#include <stdio.h> //printf debugging
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
#include <cmath>
|
||||||
|
|
||||||
static btScalar gSliderStackRows = 1.0f;
|
static btScalar gSliderStackRows = 1.0f;
|
||||||
static btScalar gSliderStackColumns = 1.0f;
|
static btScalar gSliderStackColumns = 1.0f;
|
||||||
@@ -107,7 +108,7 @@ public:
|
|||||||
// update ground
|
// update ground
|
||||||
const float cyclesPerSecond = 1.0f;
|
const float cyclesPerSecond = 1.0f;
|
||||||
m_groundMovePhase += cyclesPerSecond * deltaTime;
|
m_groundMovePhase += cyclesPerSecond * deltaTime;
|
||||||
m_groundMovePhase -= floor(m_groundMovePhase); // keep phase between 0 and 1
|
m_groundMovePhase -= std::floor(m_groundMovePhase); // keep phase between 0 and 1
|
||||||
btTransform xf = m_groundStartXf;
|
btTransform xf = m_groundStartXf;
|
||||||
float gndHOffset = btSin(m_groundMovePhase * SIMD_2_PI) * gSliderGroundHorizontalAmplitude;
|
float gndHOffset = btSin(m_groundMovePhase * SIMD_2_PI) * gSliderGroundHorizontalAmplitude;
|
||||||
float gndHVel = btCos(m_groundMovePhase * SIMD_2_PI) * gSliderGroundHorizontalAmplitude * cyclesPerSecond * SIMD_2_PI; // d(gndHOffset)/dt
|
float gndHVel = btCos(m_groundMovePhase * SIMD_2_PI) * gSliderGroundHorizontalAmplitude * cyclesPerSecond * SIMD_2_PI; // d(gndHOffset)/dt
|
||||||
|
|||||||
@@ -21,6 +21,8 @@ subject to the following restrictions:
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
|
#include <cmath>
|
||||||
#include "LinearR3.h"
|
#include "LinearR3.h"
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
@@ -121,7 +123,7 @@ float unit(float vin[3], float vout[3])
|
|||||||
|
|
||||||
if (dist > 0.0)
|
if (dist > 0.0)
|
||||||
{
|
{
|
||||||
dist = sqrt(dist);
|
dist = std::sqrt(dist);
|
||||||
f = 1. / dist;
|
f = 1. / dist;
|
||||||
vout[0] = f * vin[0];
|
vout[0] = f * vin[0];
|
||||||
vout[1] = f * vin[1];
|
vout[1] = f * vin[1];
|
||||||
|
|||||||
@@ -11,6 +11,8 @@
|
|||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
|
#include <cmath>
|
||||||
|
|
||||||
namespace Gwen
|
namespace Gwen
|
||||||
{
|
{
|
||||||
namespace Renderer
|
namespace Renderer
|
||||||
@@ -87,16 +89,16 @@ void Base::Translate(int& x, int& y)
|
|||||||
x += m_RenderOffset.x;
|
x += m_RenderOffset.x;
|
||||||
y += m_RenderOffset.y;
|
y += m_RenderOffset.y;
|
||||||
|
|
||||||
x = ceil(((float)x) * m_fScale);
|
x = std::ceil(((float)x) * m_fScale);
|
||||||
y = ceil(((float)y) * m_fScale);
|
y = std::ceil(((float)y) * m_fScale);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Base::Translate(Gwen::Rect& rect)
|
void Base::Translate(Gwen::Rect& rect)
|
||||||
{
|
{
|
||||||
Translate(rect.x, rect.y);
|
Translate(rect.x, rect.y);
|
||||||
|
|
||||||
rect.w = ceil(((float)rect.w) * m_fScale);
|
rect.w = std::ceil(((float)rect.w) * m_fScale);
|
||||||
rect.h = ceil(((float)rect.h) * m_fScale);
|
rect.h = std::ceil(((float)rect.h) * m_fScale);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Gwen::Renderer::Base::SetClipRegion(Gwen::Rect rect)
|
void Gwen::Renderer::Base::SetClipRegion(Gwen::Rect rect)
|
||||||
@@ -214,4 +216,4 @@ Gwen::Point Base::MeasureText(Gwen::Font* pFont, const Gwen::UnicodeString& text
|
|||||||
return p;
|
return p;
|
||||||
}
|
}
|
||||||
} // namespace Renderer
|
} // namespace Renderer
|
||||||
} // namespace Gwen
|
} // namespace Gwen
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
#include <cmath>
|
||||||
#include "Gwen/Controls/Slider.h"
|
#include "Gwen/Controls/Slider.h"
|
||||||
|
|
||||||
using namespace Gwen;
|
using namespace Gwen;
|
||||||
@@ -68,7 +69,7 @@ void Slider::SetValueInternal(float val)
|
|||||||
{
|
{
|
||||||
if (m_bClampToNotches)
|
if (m_bClampToNotches)
|
||||||
{
|
{
|
||||||
val = floor((val * (float)m_iNumNotches) + 0.5f);
|
val = std::floor((val * (float)m_iNumNotches) + 0.5f);
|
||||||
val /= (float)m_iNumNotches;
|
val /= (float)m_iNumNotches;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -98,4 +99,4 @@ void Slider::RenderFocus(Gwen::Skin::Base* skin)
|
|||||||
if (!IsTabable()) return;
|
if (!IsTabable()) return;
|
||||||
|
|
||||||
skin->DrawKeyboardHighlight(this, GetRenderBounds(), 0);
|
skin->DrawKeyboardHighlight(this, GetRenderBounds(), 0);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,6 +22,8 @@ subject to the following restrictions:
|
|||||||
|
|
||||||
#include <string.h> //for memset
|
#include <string.h> //for memset
|
||||||
|
|
||||||
|
#include <cmath>
|
||||||
|
|
||||||
const int kNoMerge = -1;
|
const int kNoMerge = -1;
|
||||||
|
|
||||||
bool btBatchedConstraints::s_debugDrawBatches = false;
|
bool btBatchedConstraints::s_debugDrawBatches = false;
|
||||||
@@ -520,7 +522,7 @@ static void writeGrainSizes(btBatchedConstraints* bc)
|
|||||||
{
|
{
|
||||||
const Range& phase = bc->m_phases[iPhase];
|
const Range& phase = bc->m_phases[iPhase];
|
||||||
int numBatches = phase.end - phase.begin;
|
int numBatches = phase.end - phase.begin;
|
||||||
float grainSize = floor((0.25f * numBatches / float(numThreads)) + 0.0f);
|
float grainSize = std::floor((0.25f * numBatches / float(numThreads)) + 0.0f);
|
||||||
bc->m_phaseGrainSize[iPhase] = btMax(1, int(grainSize));
|
bc->m_phaseGrainSize[iPhase] = btMax(1, int(grainSize));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ Written by: Marcus Hennix
|
|||||||
#include "BulletDynamics/Dynamics/btRigidBody.h"
|
#include "BulletDynamics/Dynamics/btRigidBody.h"
|
||||||
#include "LinearMath/btTransformUtil.h"
|
#include "LinearMath/btTransformUtil.h"
|
||||||
#include "LinearMath/btMinMax.h"
|
#include "LinearMath/btMinMax.h"
|
||||||
|
#include <cmath>
|
||||||
#include <new>
|
#include <new>
|
||||||
|
|
||||||
//#define CONETWIST_USE_OBSOLETE_SOLVER true
|
//#define CONETWIST_USE_OBSOLETE_SOLVER true
|
||||||
@@ -842,7 +843,7 @@ void btConeTwistConstraint::computeConeLimitInfo(const btQuaternion& qCone,
|
|||||||
btScalar norm = 1 / (m_swingSpan2 * m_swingSpan2);
|
btScalar norm = 1 / (m_swingSpan2 * m_swingSpan2);
|
||||||
norm += surfaceSlope2 / (m_swingSpan1 * m_swingSpan1);
|
norm += surfaceSlope2 / (m_swingSpan1 * m_swingSpan1);
|
||||||
btScalar swingLimit2 = (1 + surfaceSlope2) / norm;
|
btScalar swingLimit2 = (1 + surfaceSlope2) / norm;
|
||||||
swingLimit = sqrt(swingLimit2);
|
swingLimit = std::sqrt(swingLimit2);
|
||||||
}
|
}
|
||||||
|
|
||||||
// test!
|
// test!
|
||||||
@@ -887,7 +888,7 @@ btVector3 btConeTwistConstraint::GetPointForAngle(btScalar fAngleInRadians, btSc
|
|||||||
btScalar norm = 1 / (m_swingSpan2 * m_swingSpan2);
|
btScalar norm = 1 / (m_swingSpan2 * m_swingSpan2);
|
||||||
norm += surfaceSlope2 / (m_swingSpan1 * m_swingSpan1);
|
norm += surfaceSlope2 / (m_swingSpan1 * m_swingSpan1);
|
||||||
btScalar swingLimit2 = (1 + surfaceSlope2) / norm;
|
btScalar swingLimit2 = (1 + surfaceSlope2) / norm;
|
||||||
swingLimit = sqrt(swingLimit2);
|
swingLimit = std::sqrt(swingLimit2);
|
||||||
}
|
}
|
||||||
|
|
||||||
// convert into point in constraint space:
|
// convert into point in constraint space:
|
||||||
|
|||||||
@@ -40,6 +40,7 @@ http://gimpact.sf.net
|
|||||||
#include "btGeneric6DofSpring2Constraint.h"
|
#include "btGeneric6DofSpring2Constraint.h"
|
||||||
#include "BulletDynamics/Dynamics/btRigidBody.h"
|
#include "BulletDynamics/Dynamics/btRigidBody.h"
|
||||||
#include "LinearMath/btTransformUtil.h"
|
#include "LinearMath/btTransformUtil.h"
|
||||||
|
#include <cmath>
|
||||||
#include <new>
|
#include <new>
|
||||||
|
|
||||||
btGeneric6DofSpring2Constraint::btGeneric6DofSpring2Constraint(btRigidBody& rbA, btRigidBody& rbB, const btTransform& frameInA, const btTransform& frameInB, RotateOrder rotOrder)
|
btGeneric6DofSpring2Constraint::btGeneric6DofSpring2Constraint(btRigidBody& rbA, btRigidBody& rbB, const btTransform& frameInA, const btTransform& frameInB, RotateOrder rotOrder)
|
||||||
@@ -845,7 +846,7 @@ int btGeneric6DofSpring2Constraint::get_limit_motor_info2(
|
|||||||
if (m_rbA.getInvMass() == 0) m = mB; else
|
if (m_rbA.getInvMass() == 0) m = mB; else
|
||||||
if (m_rbB.getInvMass() == 0) m = mA; else
|
if (m_rbB.getInvMass() == 0) m = mA; else
|
||||||
m = mA*mB / (mA + mB);
|
m = mA*mB / (mA + mB);
|
||||||
btScalar angularfreq = sqrt(ks / m);
|
btScalar angularfreq = btSqrt(ks / m);
|
||||||
|
|
||||||
//limit stiffness (the spring should not be sampled faster that the quarter of its angular frequency)
|
//limit stiffness (the spring should not be sampled faster that the quarter of its angular frequency)
|
||||||
if (limot->m_springStiffnessLimited && 0.25 < angularfreq * dt)
|
if (limot->m_springStiffnessLimited && 0.25 < angularfreq * dt)
|
||||||
@@ -1085,7 +1086,7 @@ void btGeneric6DofSpring2Constraint::setServoTarget(int index, btScalar targetOr
|
|||||||
btScalar target = targetOrg + SIMD_PI;
|
btScalar target = targetOrg + SIMD_PI;
|
||||||
if (1)
|
if (1)
|
||||||
{
|
{
|
||||||
btScalar m = target - SIMD_2_PI * floor(target / SIMD_2_PI);
|
btScalar m = target - SIMD_2_PI * std::floor(target / SIMD_2_PI);
|
||||||
// handle boundary cases resulted from floating-point cut off:
|
// handle boundary cases resulted from floating-point cut off:
|
||||||
{
|
{
|
||||||
if (m >= SIMD_2_PI)
|
if (m >= SIMD_2_PI)
|
||||||
|
|||||||
Reference in New Issue
Block a user