17using SubShapeIndex = uint32_t;
32auto CreateMutableCompoundShape(std::span<const SubShapeInfo> shapes) ->
CookedShape;
38auto CreateStaticCompoundShape(std::span<const SubShapeInfo> shapes) ->
CookedShape;
89 std::unique_ptr<Impl> m_impl;
Interface for modifying a mutable CompoundShape.
Definition: CompoundShape.h:48
void ModifySubShape(SubShapeIndex index, const Vector3 &position, const Quaternion &rotation)
Update the position and rotation of a SubShape.
auto AddSubShape(const SubShapeInfo &info) -> SubShapeIndex
Add a new SubShape.
auto GetSubShapePosition(SubShapeIndex index) const -> Vector3
Get the local position of a SubShape.
void RecalculateCenterOfMass()
Update internal COM offsets, if the shape has been modified significantly.
auto GetSubShapeRotation(SubShapeIndex index) const -> Quaternion
Get the local rotation of a SubShape.
auto GetSubShapeIndex(uint32_t userData) const -> SubShapeIndex
Get the index of the SubShape with userData.
void RemoveSubShape(SubShapeIndex index)
Remove the SubShape at index.
CompoundShapeBuilder(CookedShape &shape)
Construct a builder from a cooked mutable CompoundShape.
void ReplaceSubShape(SubShapeIndex index, const SubShapeInfo &info)
Replace the SubShape matching shapeId (user data will be unchanged).
auto GetSubShapeCount() const -> uint32_t
Get the number of SubShapes.
Handle to a processed Shape instance.
Definition: CookedShape.h:32
Quaternion type for representing 3D rotations.
Definition: Quaternion.h:13
Describes collision geometry for physics types.
Definition: Shape.h:31
static constexpr auto MakeBox(const Vector3 &extents=Vector3::Splat(1.0f)) -> Shape
Make a primitive box shape.
Definition: Shape.h:33
Describes a SubShape to be added to a compound shape.
Definition: CompoundShape.h:21
Shape shape
subshape info; supported types depend on mutable/static build option
Definition: CompoundShape.h:22
Quaternion rotation
local rotation of the subshape
Definition: CompoundShape.h:24
uint32_t userData
optional data for the subshape
Definition: CompoundShape.h:25
Vector3 position
local position of the subshape
Definition: CompoundShape.h:23
A three component vector.
Definition: Vector.h:29