Home
last modified time | relevance | path

Searched refs:otherBody (Results 1 – 25 of 26) sorted by relevance

12

/dports/devel/tokamak/tokamak_release/tokamaksrc/src/
H A Dstack.cpp107 if (otherBody) in CheckHeader()
109 ASSERT(otherBody->stackInfo); in CheckHeader()
115 otherBody->stackInfo->CheckHeader(sh); in CheckHeader()
143 if (body->GetRestRecord(i).otherBody)
665 if (!otherBody) in CheckAcceptNewHeader()
672 */ ASSERT(otherBody->stackInfo); in CheckAcceptNewHeader()
681 foundBody = otherBody; in CheckAcceptNewHeader()
693 if (!otherBody) in CheckAcceptNewHeader()
699 if (otherBody != foundBody) in CheckAcceptNewHeader()
749 if (!otherBody) in ForceAcceptNewHeader()
[all …]
H A Drigidbody.cpp1094 ASSERT(otherBody != NULL); in CanConsiderOtherBodyIdle()
1111 ASSERT(otherBody); in CheckOtherBody()
1113 if (otherBody != sim->GetTerrainBody() && in CheckOtherBody()
1114 (!otherBody->IsValid() || !otherBody->isActive)) in CheckOtherBody()
1123 ASSERT(otherBody); in GetOtherBodyPoint()
1148 otherBody = rc.otherBody; in Set()
1156 if (rc.otherBody->AsCollisionBody()) in Set()
1161 otherBody->rbRestingOnMe.Add(&restOnHandle); in Set()
1166 otherBody = _otherBody; in SetTmp()
1184 if (otherBody) in SetInvalid()
[all …]
H A Drigidbody.h405 neRigidBodyBase * otherBody; variable
419 otherBody = NULL; in Init()
431 return otherBody; in GetOtherBody()
435 if (!otherBody) in GetOtherRigidBody()
438 return otherBody->AsRigidBody(); in GetOtherRigidBody()
442 if (!otherBody) in GetOtherCollisionBody()
445 return otherBody->AsCollisionBody(); in GetOtherCollisionBody()
703 neBool IsConstraintNeighbour(neRigidBodyBase * otherBody);
725 …neV3 GetCorrectRotation(neRigidBody_ * otherBody, f32 massOther, neV3 & pointThis, neV3 & pointOth…
H A Drestcontact.cpp1167 neRigidBody_* otherBody = GetRestRecord(i).GetOtherRigidBody(); in MigrateNewHeader() local
1169 if (otherBody) in MigrateNewHeader()
1171 if (!otherBody->stackInfo) in MigrateNewHeader()
1174 if (otherBody->stackInfo->stackHeader == newHeader) in MigrateNewHeader()
1177 if (!otherBody->stackInfo->isTerminator) in MigrateNewHeader()
1178 otherBody->MigrateNewHeader(newHeader, curHeader); in MigrateNewHeader()
1634 if ((GetRestRecord(i).otherBody != sim->GetTerrainBody()) &&
1635 (!GetRestRecord(i).otherBody->IsValid() || !GetRestRecord(i).otherBody->isActive))
1639 GetRestRecord(i).otherBody = NULL;
1697 neRigidBodyBase * rb = GetRestRecord(index).otherBody;
/dports/graphics/urho3d/Urho3D-1.7.1/bin/Data/LuaScripts/
H A D32_Urho2DConstraints.lua117 constraintDistance.otherBody = ballBody -- Constrain ball to box
151 gear1.otherBody = ball1Body -- Constrain ball1 to baseBox
154 gear2.otherBody = ball2Body -- Constrain ball2 to baseBox
158 constraintGear.otherBody = ball2Body -- Constrain ball2 to ball1
177 wheel1.otherBody = ball1Node:GetComponent("RigidBody2D")
185 wheel2.otherBody = ball2Node:GetComponent("RigidBody2D")
201 constraintMotor.otherBody = ballNode:GetComponent("RigidBody2D") -- Constrain ball to box
238 constraintPulley.otherBody = ballNode:GetComponent("RigidBody2D") -- Constrain ball to box
272 constraintRope.otherBody = ballNode:GetComponent("RigidBody2D") -- Constrain ball to box
285 constraintWeld.otherBody = ballNode:GetComponent("RigidBody2D") -- Constrain ball to box
[all …]
H A D28_Urho2DPhysicsRope.lua92 joint.otherBody = prevBody
100 constraintRope.otherBody = prevBody
H A D13_Ragdolls.lua252 local otherBody = eventData["OtherBody"]:GetPtr("RigidBody")
254 if otherBody.mass > 0.0 then
362 constraint.otherBody = parentNode:GetComponent("RigidBody")
H A D19_VehicleDemo.lua328 wheelConstraint.otherBody = node:GetComponent("RigidBody")
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/Physics/
H A DConstraint.cpp493 btRigidBody* otherBody = otherBody_ ? otherBody_->GetBody() : 0; in CreateConstraint() local
502 if (!otherBody) in CreateConstraint()
503 otherBody = &btTypedConstraint::getFixedBody(); in CreateConstraint()
513 …constraint_ = new btPoint2PointConstraint(*ownBody, *otherBody, ToBtVector3(ownBodyScaledPosition), in CreateConstraint()
522 constraint_ = new btHingeConstraint(*ownBody, *otherBody, ownFrame, otherFrame); in CreateConstraint()
530 constraint_ = new btSliderConstraint(*ownBody, *otherBody, ownFrame, otherFrame, false); in CreateConstraint()
538 constraint_ = new btConeTwistConstraint(*ownBody, *otherBody, ownFrame, otherFrame); in CreateConstraint()
/dports/graphics/urho3d/Urho3D-1.7.1/bin/Data/Scripts/
H A D32_Urho2DConstraints.as122 constraintDistance.otherBody = ballDistanceBody; // Constrain ball to box
157 gear1.otherBody = ball1Body; // Constrain ball1 to baseBox
160 gear2.otherBody = ball2Body; // Constrain ball2 to baseBox
164 constraintGear.otherBody = ball2Body; // Constrain ball2 to ball1
184 wheel1.otherBody = ball1WheelNode.GetComponent("RigidBody2D");
192 wheel2.otherBody = ball2WheelNode.GetComponent("RigidBody2D");
209 constraintMotor.otherBody = ballMotorNode.GetComponent("RigidBody2D"); // Constrain ball to box
252 constraintPulley.ratio = 1.0; // Weight ratio between ownerBody and otherBody
283 constraintRope.otherBody = ballRopeNode.GetComponent("RigidBody2D"); // Constrain ball to box
296 constraintWeld.otherBody = ballWeldNode.GetComponent("RigidBody2D"); // Constrain ball to box
[all …]
H A D28_Urho2DPhysicsRope.as99 joint.otherBody = prevBody;
107 constraintRope.otherBody = prevBody;
H A D13_Ragdolls.as262 RigidBody@ otherBody = eventData["OtherBody"].GetPtr();
264 if (otherBody.mass > 0.0f)
379 constraint.otherBody = parentNode.GetComponent("RigidBody");
H A D19_VehicleDemo.as338 wheelConstraint.otherBody = node.GetComponent("RigidBody");
/dports/security/zaproxy/zaproxy-2.11.1/zap/src/main/java/org/parosproxy/paros/network/
H A DHttpBody.java633 HttpBody otherBody = (HttpBody) object; in equals() local
634 if (!Arrays.equals(body, otherBody.body)) { in equals()
637 return Objects.equals(encodings, otherBody.encodings); in equals()
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Samples/13_Ragdolls/
H A DCreateRagdoll.cpp50 RigidBody* otherBody = static_cast<RigidBody*>(eventData[P_OTHERBODY].GetPtr()); in HandleNodeCollision() local
52 if (otherBody->GetMass() > 0.0f) in HandleNodeCollision()
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/LuaScript/pkgs/Urho2D/
H A DConstraint2D.pkg13 tolua_property__get_set RigidBody2D* otherBody;
/dports/graphics/urho3d/Urho3D-1.7.1/bin/Data/Scripts/NinjaSnowWar/
H A DGameObject.as91 RigidBody@ otherBody = eventData["OtherBody"].GetPtr();
94 if (otherBody.collisionLayer == 2)
/dports/games/critterding/critterding-beta12/src/scenes/entities/
H A Dbodyarch.h27 void copyFrom(const BodyArch* otherBody);
H A Dbodyarch.cpp1035 void BodyArch::copyFrom(const BodyArch* otherBody) in copyFrom() argument
1037 color = otherBody->color; in copyFrom()
1038 retinasize = otherBody->retinasize; in copyFrom()
1040 for ( unsigned int i=0; i < otherBody->archBodyparts.size(); i++ ) in copyFrom()
1042 const archBodypart *obp = &otherBody->archBodyparts[i]; in copyFrom()
1054 for ( unsigned int i=0; i < otherBody->archMouths.size(); i++ ) in copyFrom()
1056 const archMouth *omo = &otherBody->archMouths[i]; in copyFrom()
1066 for ( unsigned int i=0; i < otherBody->archConstraints.size(); i++ ) in copyFrom()
1068 const archConstraint *oco = &otherBody->archConstraints[i]; in copyFrom()
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/LuaScript/pkgs/Physics/
H A DConstraint.pkg46 tolua_property__get_set RigidBody* otherBody;
/dports/science/simbody/simbody-Simbody-3.7/Simbody/src/
H A DMobilizedBody.cpp160 bool MobilizedBody::isInSameSubsystem(const MobilizedBody& otherBody) const { in isInSameSubsystem()
161 return isInSubsystem() && otherBody.isInSubsystem() in isInSameSubsystem()
162 && getMatterSubsystem().isSameSubsystem(otherBody.getMatterSubsystem()); in isInSameSubsystem()
165 bool MobilizedBody::isSameMobilizedBody(const MobilizedBody& otherBody) const { in isSameMobilizedBody()
166 return hasSameImplementation(otherBody); in isSameMobilizedBody()
/dports/graphics/urho3d/Urho3D-1.7.1/Docs/
H A DAngelScriptAPI.h2563 RigidBody otherBody; variable
2640 RigidBody2D otherBody; variable
2715 RigidBody2D otherBody; variable
2792 RigidBody2D otherBody; variable
2864 RigidBody2D otherBody; variable
2944 RigidBody2D otherBody; variable
3019 RigidBody2D otherBody; variable
3099 RigidBody2D otherBody; variable
3172 RigidBody2D otherBody; variable
3255 RigidBody2D otherBody; variable
[all …]
H A DScriptAPI.dox5063 - RigidBody@ otherBody
5130 - RigidBody2D@ otherBody
5195 - RigidBody2D@ otherBody
5262 - RigidBody2D@ otherBody
5324 - RigidBody2D@ otherBody
5394 - RigidBody2D@ otherBody
5459 - RigidBody2D@ otherBody
5529 - RigidBody2D@ otherBody
5592 - RigidBody2D@ otherBody
5665 - RigidBody2D@ otherBody
[all …]
H A DLuaScriptAPI.dox1373 - RigidBody* otherBody
1401 - RigidBody2D* otherBody
/dports/graphics/urho3d/Urho3D-1.7.1/bin/Data/Scripts/Editor/
H A DEditorHierarchyWindow.as1129 constraint.otherBody = rigidBody;

12