NcEngine
PhysicsUtility.h
Go to the documentation of this file.
1
5#pragma once
6
9
10#include <span>
11#include <string_view>
12
13namespace nc
14{
15auto ToString(BodyType type) -> std::string_view;
16auto ToBodyType(std::string_view bodyType) -> BodyType;
17auto GetBodyTypeNames() -> std::span<const std::string_view>;
18
19auto ToString(ShapeType type) -> std::string_view;
20auto ToShapeType(std::string_view shapeType) -> ShapeType;
21auto GetShapeTypeNames() -> std::span<const std::string_view>;
22
23auto ToString(ConstraintType type) -> std::string_view;
24auto ToConstraintType(std::string_view constraintType) -> ConstraintType;
25auto GetConstraintTypeNames() -> std::span<const std::string_view>;
26} // namespace nc
ConstraintType
Type of a Constraint.
Definition: Constraints.h:26
BodyType
Determines movement and collision behavior of a RigidBody.
Definition: RigidBody.h:70
ShapeType
Options for Shape geometry.
Definition: Shape.h:15