![]() |
Jolt Physics
A multi core friendly Game Physics Engine
|
Class that constructs a TaperedCapsuleShape. More...
#include <TaperedCapsuleShape.h>
Public Member Functions | |
| TaperedCapsuleShapeSettings ()=default | |
| Default constructor for deserialization. | |
| TaperedCapsuleShapeSettings (float inHalfHeightOfTaperedCylinder, float inTopRadius, float inBottomRadius, const PhysicsMaterial *inMaterial=nullptr) | |
| Create a tapered capsule centered around the origin with one sphere cap at (0, -inHalfHeightOfTaperedCylinder, 0) with radius inBottomRadius and the other at (0, inHalfHeightOfTaperedCylinder, 0) with radius inTopRadius. | |
| bool | IsValid () const |
| Check if the settings are valid. | |
| bool | IsSphere () const |
| Checks if the settings of this tapered capsule make this shape a sphere. | |
| virtual ShapeResult | Create () const override |
| Create a shape according to the settings specified by this object. | |
Public Member Functions inherited from ConvexShapeSettings | |
| ConvexShapeSettings ()=default | |
| Constructor. | |
| ConvexShapeSettings (const PhysicsMaterial *inMaterial) | |
| void | SetDensity (float inDensity) |
| Set the density of the object in kg / m^3. | |
Public Member Functions inherited from ShapeSettings | |
| void | ClearCachedResult () |
Public Member Functions inherited from SerializableObject | |
| virtual | ~SerializableObject ()=default |
| Destructor. | |
Public Member Functions inherited from RefTarget< ShapeSettings > | |
| RefTarget ()=default | |
| Constructor. | |
| RefTarget (const RefTarget &) | |
| ~RefTarget () | |
| assert no one is referencing us | |
| void | SetEmbedded () const |
| RefTarget & | operator= (const RefTarget &) |
| Assignment operator. | |
| uint32 | GetRefCount () const |
| Get current refcount of this object. | |
| void | AddRef () const |
| Add or release a reference to this object. | |
| void | Release () const |
Public Attributes | |
| float | mHalfHeightOfTaperedCylinder = 0.0f |
| float | mTopRadius = 0.0f |
| float | mBottomRadius = 0.0f |
Public Attributes inherited from ConvexShapeSettings | |
| RefConst< PhysicsMaterial > | mMaterial |
| Material assigned to this shape. | |
| float | mDensity = 1000.0f |
| Uniform density of the interior of the convex object (kg / m^3) | |
Public Attributes inherited from ShapeSettings | |
| uint64 | mUserData = 0 |
| User data (to be used freely by the application) | |
Additional Inherited Members | |
Public Types inherited from ShapeSettings | |
| using | ShapeResult = Result<Ref<Shape>> |
Static Public Member Functions inherited from RefTarget< ShapeSettings > | |
| static int | sInternalGetRefCountOffset () |
| INTERNAL HELPER FUNCTION USED BY SERIALIZATION. | |
Protected Member Functions inherited from SerializableObject | |
| SerializableObject ()=default | |
| Don't allow (copy) constructing this base class, but allow derived classes to (copy) construct themselves. | |
| SerializableObject (const SerializableObject &)=default | |
| SerializableObject & | operator= (const SerializableObject &)=default |
Protected Attributes inherited from ShapeSettings | |
| ShapeResult | mCachedResult |
Protected Attributes inherited from RefTarget< ShapeSettings > | |
| atomic< uint32 > | mRefCount |
| Current reference count. | |
Static Protected Attributes inherited from RefTarget< ShapeSettings > | |
| static constexpr uint32 | cEmbedded |
| A large value that gets added to the refcount to mark the object as embedded. | |
Class that constructs a TaperedCapsuleShape.
|
default |
Default constructor for deserialization.
| TaperedCapsuleShapeSettings::TaperedCapsuleShapeSettings | ( | float | inHalfHeightOfTaperedCylinder, |
| float | inTopRadius, | ||
| float | inBottomRadius, | ||
| const PhysicsMaterial * | inMaterial = nullptr ) |
Create a tapered capsule centered around the origin with one sphere cap at (0, -inHalfHeightOfTaperedCylinder, 0) with radius inBottomRadius and the other at (0, inHalfHeightOfTaperedCylinder, 0) with radius inTopRadius.
|
overridevirtual |
Create a shape according to the settings specified by this object.
Implements ShapeSettings.
| bool TaperedCapsuleShapeSettings::IsSphere | ( | ) | const |
Checks if the settings of this tapered capsule make this shape a sphere.
|
inline |
Check if the settings are valid.
| float TaperedCapsuleShapeSettings::mBottomRadius = 0.0f |
| float TaperedCapsuleShapeSettings::mHalfHeightOfTaperedCylinder = 0.0f |
| float TaperedCapsuleShapeSettings::mTopRadius = 0.0f |