35 return Shape{asset::NullAssetId, extents, ShapeType::Box};
41 return Shape{asset::NullAssetId, Vector3::Splat(radius * 2.0f), ShapeType::Sphere};
46 float radius = 0.5f) ->
Shape
48 return Shape{asset::NullAssetId,
Vector3{radius * 2.0f, height * 0.5f, radius * 2.0f}, ShapeType::Capsule};
55 return Shape{assetId, scale, ShapeType::ConvexHull};
62 static constexpr auto MakeMesh(asset::AssetId assetId,
65 return Shape{assetId, scale, ShapeType::Mesh};
70 float scale = 1.0f) ->
Shape
72 return Shape{assetId, Vector3::Splat(scale), ShapeType::Compound};
75 auto GetLocalScale() const -> const
Vector3& {
return m_localScale; }
76 auto GetAssetId() const -> asset::AssetId {
return m_assetId; }
77 auto GetType() const -> ShapeType {
return m_type; }
80 constexpr Shape(asset::AssetId
id,
const Vector3& scale, ShapeType type)
81 : m_assetId{id}, m_localScale{scale}, m_type{type}
85 asset::AssetId m_assetId = asset::NullAssetId;
86 Vector3 m_localScale = Vector3::One();
ShapeType
Options for Shape geometry.
Definition: Shape.h:15
auto NormalizeScaleForShape(nc::ShapeType shape, const Vector3 ¤tScale, const Vector3 &newScale) -> Vector3
Get a valid scale for a shape given its current and desired scale values.
Definition: Geometry.h:20
Definition: Geometry.h:27
Definition: Geometry.h:34
Describes collision geometry for physics types.
Definition: Shape.h:31
static constexpr auto MakeConvexHull(asset::AssetId assetId, const Vector3 &scale=Vector3::One()) -> Shape
Make a shape from a ConvexHull asset.
Definition: Shape.h:52
static constexpr auto MakeMesh(asset::AssetId assetId, const Vector3 &scale=Vector3::One()) -> Shape
Make a shape from a MeshCollider asset.
Definition: Shape.h:62
static constexpr auto MakeSphere(float radius=0.5f) -> Shape
Make a primitive sphere shape.
Definition: Shape.h:39
static constexpr auto MakeCapsule(float height=2.0f, float radius=0.5f) -> Shape
Make a primitive capsule shape.
Definition: Shape.h:45
static constexpr auto MakeBox(const Vector3 &extents=Vector3::Splat(1.0f)) -> Shape
Make a primitive box shape.
Definition: Shape.h:33
static constexpr auto MakeCompound(asset::AssetId assetId, float scale=1.0f) -> Shape
Make a shape from a CompoundShape asset.
Definition: Shape.h:69
Definition: Geometry.h:14
A three component vector.
Definition: Vector.h:29