NcEngine
SupportFunctions.h
Go to the documentation of this file.
1
5#pragma once
6
7#include "DirectXMath.h"
8
9#include <memory>
10
11namespace nc
12{
13class CookedShape;
14struct Vector3;
15
18{
19 struct Impl;
20
21 public:
23 static auto GetDefault() -> SupportBuffer&;
24
27
28 SupportBuffer(SupportBuffer&& other) noexcept;
29 SupportBuffer& operator=(SupportBuffer&& other) noexcept;
30 SupportBuffer(const SupportBuffer&) = delete;
31 SupportBuffer& operator=(const SupportBuffer&) = delete;
32 ~SupportBuffer() noexcept;
33
35 auto GetImpl() -> Impl& { return *m_impl; }
38 private:
39 std::unique_ptr<Impl> m_impl;
40};
41
47auto GetWorldSupport(const CookedShape& shape,
48 const Vector3& directionNormal,
49 SupportBuffer& buffer = SupportBuffer::GetDefault()) -> Vector3;
50
51auto GetWorldSupport(const CookedShape& shape,
52 DirectX::FXMVECTOR directionNormal,
53 SupportBuffer& buffer = SupportBuffer::GetDefault()) -> DirectX::XMVECTOR;
54
60auto GetHalfExtent(const CookedShape& shape,
61 const Vector3& directionNormal,
62 SupportBuffer& buffer = SupportBuffer::GetDefault()) -> float;
63
64auto GetHalfExtent(const CookedShape& shape,
65 DirectX::FXMVECTOR directionNormal,
66 SupportBuffer& buffer = SupportBuffer::GetDefault()) -> float;
67} // namespace nc
Wrapper around a scratch buffer used by support functions.
Definition: SupportFunctions.h:18
static auto GetDefault() -> SupportBuffer &
Get the global SupportBuffer for use with single-threaded calls to support functions.
SupportBuffer()
Create a new SupportBuffer for use with multi-threaded calls to support functions.