x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
btContactConstraint.h - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\DarkPuzzle\libs\bullet_sdk\src\BulletDynamics\ConstraintSolver\btContactConstraint.h
旋转
特效
属性
历史版本
/* Bullet Continuous Collision Detection and Physics Library Copyright (c) 2003-2006 Erwin Coumans http://continuousphysics.com/Bullet/ This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ #ifndef CONTACT_CONSTRAINT_H #define CONTACT_CONSTRAINT_H //todo: make into a proper class working with the iterative constraint solver class btRigidBody; #include "LinearMath/btVector3.h" #include "LinearMath/btScalar.h" struct btContactSolverInfo; class btManifoldPoint; enum { DEFAULT_CONTACT_SOLVER_TYPE=0, CONTACT_SOLVER_TYPE1, CONTACT_SOLVER_TYPE2, USER_CONTACT_SOLVER_TYPE1, MAX_CONTACT_SOLVER_TYPES }; typedef btScalar (*ContactSolverFunc)(btRigidBody& body1, btRigidBody& body2, class btManifoldPoint& contactPoint, const btContactSolverInfo& info); ///stores some extra information to each contact point. It is not in the contact point, because that want to keep the collision detection independent from the constraint solver. struct btConstraintPersistentData { inline btConstraintPersistentData() :m_appliedImpulse(btScalar(0.)), m_prevAppliedImpulse(btScalar(0.)), m_accumulatedTangentImpulse0(btScalar(0.)), m_accumulatedTangentImpulse1(btScalar(0.)), m_jacDiagABInv(btScalar(0.)), m_persistentLifeTime(0), m_restitution(btScalar(0.)), m_friction(btScalar(0.)), m_penetration(btScalar(0.)), m_contactSolverFunc(0), m_frictionSolverFunc(0) { } /// total applied impulse during most recent frame btScalar m_appliedImpulse; btScalar m_prevAppliedImpulse; btScalar m_accumulatedTangentImpulse0; btScalar m_accumulatedTangentImpulse1; btScalar m_jacDiagABInv; btScalar m_jacDiagABInvTangent0; btScalar m_jacDiagABInvTangent1; int m_persistentLifeTime; btScalar m_restitution; btScalar m_friction; btScalar m_penetration; btVector3 m_frictionWorldTangential0; btVector3 m_frictionWorldTangential1; btVector3 m_frictionAngularComponent0A; btVector3 m_frictionAngularComponent0B; btVector3 m_frictionAngularComponent1A; btVector3 m_frictionAngularComponent1B; //some data doesn't need to be persistent over frames: todo: clean/reuse this btVector3 m_angularComponentA; btVector3 m_angularComponentB; ContactSolverFunc m_contactSolverFunc; ContactSolverFunc m_frictionSolverFunc; }; ///bilateral constraint between two dynamic objects ///positive distance = separation, negative distance = penetration void resolveSingleBilateral(btRigidBody& body1, const btVector3& pos1, btRigidBody& body2, const btVector3& pos2, btScalar distance, const btVector3& normal,btScalar& impulse ,btScalar timeStep); ///contact constraint resolution: ///calculate and apply impulse to satisfy non-penetration and non-negative relative velocity constraint ///positive distance = separation, negative distance = penetration btScalar resolveSingleCollision( btRigidBody& body1, btRigidBody& body2, btManifoldPoint& contactPoint, const btContactSolverInfo& info); btScalar resolveSingleFriction( btRigidBody& body1, btRigidBody& body2, btManifoldPoint& contactPoint, const btContactSolverInfo& solverInfo ); btScalar resolveSingleCollisionCombined( btRigidBody& body1, btRigidBody& body2, btManifoldPoint& contactPoint, const btContactSolverInfo& solverInfo ); #endif //CONTACT_CONSTRAINT_H
btContactConstraint.h
网页地址
文件地址
上一页
5/21
下一页
下载
( 4 KB )
Comments
Total ratings:
0
Average rating:
无评论
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.