NcEngine
HitInfo.h
Go to the documentation of this file.
1
5#pragma once
6
8
9#include <array>
10#include <span>
11
12namespace nc
13{
16{
17 public:
18 explicit Contacts(const std::array<Vector3, 4>& points, size_t numPoints = 4)
19 : m_points{points},
20 m_numPoints{static_cast<uint32_t>(numPoints)}
21 {
22 }
23
24 auto GetPoints() const -> std::span<const Vector3>
25 {
26 return std::span<const Vector3>{m_points.begin(), m_numPoints};
27 }
28
29 auto GetCount() const -> uint32_t
30 {
31 return m_numPoints;
32 }
33
34 private:
35 std::array<Vector3, 4> m_points;
36 uint32_t m_numPoints;
37};
38
40struct HitInfo
41{
42 Vector3 offset = Vector3::Zero();
43 Vector3 normal = Vector3::Zero();
44 float depth = 0.0f;
45 Contacts contactsOnFirst;
46 Contacts contactsOnSecond;
47};
48} // namespace nc
A list of contact points on a RigidBody.
Definition: HitInfo.h:16
Collision event information.
Definition: HitInfo.h:41
A three component vector.
Definition: Vector.h:29