3#include <ext/reactphysics3d/src/collision/shapes/CapsuleShape.h>
58 Vector3 yAxis(0.0f, -1.0f, 0.0f);
60 auto& abNormalizedVectorXYZ = abNormalized.
getArray();
62 if (Math::abs(abNormalizedVectorXYZ[0]) < Math::EPSILON && Math::abs(abNormalizedVectorXYZ[2]) < Math::EPSILON) {
63 rotationAxis.
set(abNormalizedVectorXYZ[1], 0.0f, 0.0f);
65 rotationAxis = Vector3::computeCrossProduct(yAxis, abNormalized).
normalize();
67 auto angle = Vector3::computeAngle(yAxis, abNormalized, yAxis);
69 rotationQuaternion.
rotate(rotationAxis, angle);
73 reactphysics3d::Quaternion(
74 rotationQuaternion.
getX(),
75 rotationQuaternion.
getY(),
76 rotationQuaternion.
getZ(),
77 rotationQuaternion.
getW()
84 reactphysics3d::Vector3(
Bounding volume interface.
reactphysics3d::Transform collisionShapeLocalTransform
Vector3 collisionShapeLocalTranslation
reactphysics3d::CollisionShape * collisionShape
void computeBoundingBox()
Compute bounding box.
Capsule physics primitive.
const Vector3 & getB() const
void setScale(const Vector3 &scale) override
Set local scale.
const Vector3 & getA() const
BoundingVolume * clone() const override
Clones this bounding volume.
Quaternion & rotate(const Vector3 &axis, float angle)
Creates a rotation quaternion.
float computeLength() const
Vector3 & normalize()
Normalize the vector.
Vector3 & set(float x, float y, float z)
Set up vector.
Vector3 clone() const
Clones the vector.
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
Vector3 & add(const Vector3 &v)
Adds a vector.
Vector3 & scale(float scale)
Scale this vector.
array< float, 3 > & getArray() const