104 lines
4.2 KiB
C++
104 lines
4.2 KiB
C++
/********************************************************************************
|
|
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
|
|
* Copyright (c) 2010-2020 Daniel Chappuis *
|
|
*********************************************************************************
|
|
* *
|
|
* 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 REACTPHYSICS3D_FIXED_JOINT_H
|
|
#define REACTPHYSICS3D_FIXED_JOINT_H
|
|
|
|
// Libraries
|
|
#include <reactphysics3d/constraint/Joint.h>
|
|
#include <reactphysics3d/mathematics/mathematics.h>
|
|
|
|
namespace reactphysics3d {
|
|
|
|
// Structure FixedJointInfo
|
|
/**
|
|
* This structure is used to gather the information needed to create a fixed
|
|
* joint. This structure will be used to create the actual fixed joint.
|
|
*/
|
|
struct FixedJointInfo : public JointInfo {
|
|
|
|
public :
|
|
|
|
// -------------------- Attributes -------------------- //
|
|
|
|
/// Anchor point (in world-space coordinates)
|
|
Vector3 anchorPointWorldSpace;
|
|
|
|
/// Constructor
|
|
/**
|
|
* @param rigidBody1 The first body of the joint
|
|
* @param rigidBody2 The second body of the joint
|
|
* @param initAnchorPointWorldSpace The initial anchor point of the joint in
|
|
* world-space coordinates
|
|
*/
|
|
FixedJointInfo(RigidBody* rigidBody1, RigidBody* rigidBody2,
|
|
const Vector3& initAnchorPointWorldSpace)
|
|
: JointInfo(rigidBody1, rigidBody2, JointType::FIXEDJOINT),
|
|
anchorPointWorldSpace(initAnchorPointWorldSpace){}
|
|
};
|
|
|
|
// Class FixedJoint
|
|
/**
|
|
* This class represents a fixed joint that is used to forbid any translation or rotation
|
|
* between two bodies.
|
|
*/
|
|
class FixedJoint : public Joint {
|
|
|
|
private :
|
|
|
|
// -------------------- Methods -------------------- //
|
|
|
|
/// Return the number of bytes used by the joint
|
|
virtual size_t getSizeInBytes() const override;
|
|
|
|
public :
|
|
|
|
// -------------------- Methods -------------------- //
|
|
|
|
/// Constructor
|
|
FixedJoint(Entity entity, PhysicsWorld& world, const FixedJointInfo& jointInfo);
|
|
|
|
/// Destructor
|
|
virtual ~FixedJoint() override = default;
|
|
|
|
/// Deleted copy-constructor
|
|
FixedJoint(const FixedJoint& constraint) = delete;
|
|
|
|
/// Return a string representation
|
|
virtual std::string to_string() const override;
|
|
|
|
/// Deleted assignment operator
|
|
FixedJoint& operator=(const FixedJoint& constraint) = delete;
|
|
};
|
|
|
|
// Return the number of bytes used by the joint
|
|
inline size_t FixedJoint::getSizeInBytes() const {
|
|
return sizeof(FixedJoint);
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|