NcEngine
MatrixUtilities.h
Go to the documentation of this file.
1
5#pragma once
6
7#include "ncmath/Vector.h"
8#include "ncmath/Quaternion.h"
9#include "DirectXMath.h"
10
11namespace nc
12{
14{
15 DirectX::XMVECTOR scale;
16 DirectX::XMVECTOR rotation;
17 DirectX::XMVECTOR position;
18};
19
20inline auto ToVector3(DirectX::FXMVECTOR in) noexcept -> Vector3
21{
22 auto out = Vector3{};
23 DirectX::XMStoreVector3(&out, in);
24 return out;
25}
26
27inline auto ToQuaternion(DirectX::FXMVECTOR in) noexcept -> Quaternion
28{
29 auto out = Quaternion::Identity();
30 DirectX::XMStoreQuaternion(&out, in);
31 return out;
32}
33
34inline auto DecomposeMatrix(DirectX::FXMMATRIX in) noexcept -> DecomposedMatrixXM
35{
36 auto out = DecomposedMatrixXM{};
37 DirectX::XMMatrixDecompose(&out.scale, &out.rotation, &out.position, in);
38 return out;
39}
40
41inline auto DecomposeRotation(DirectX::FXMMATRIX in) noexcept -> DirectX::XMVECTOR
42{
43 auto [scl, rot, pos] = DecomposeMatrix(in);
44 return rot;
45}
46
47inline auto DecomposeScale(DirectX::FXMMATRIX in) noexcept -> DirectX::XMVECTOR
48{
49 using namespace DirectX;
50 constexpr auto selectX1Y1Z2 = XMVECTORU32{XM_SELECT_0, XM_SELECT_0, XM_SELECT_1, XM_SELECT_0};
51 const auto& x = XMVector3LengthSq(in.r[0]);
52 const auto& y = XMVector3LengthSq(in.r[1]);
53 const auto& z = XMVector3LengthSq(in.r[2]);
54 const auto xyz = XMVectorSelect(XMVectorMergeXY(x, y), z, selectX1Y1Z2);
55 return XMVectorSqrt(xyz);
56}
57
58inline DirectX::XMVECTOR ToXMVector(const Vector3& v)
59{
60 return DirectX::XMLoadVector3(&v);
61}
62
63inline DirectX::XMVECTOR ToXMVectorHomogeneous(const Vector3& v)
64{
65 return DirectX::XMVectorSetW(ToXMVector(v), 1.0f);
66}
67
68inline DirectX::XMVECTOR ToXMVector(const Quaternion& q)
69{
70 return DirectX::XMLoadQuaternion(&q);
71}
72
73inline DirectX::XMMATRIX ToTransMatrix(const Vector3& v)
74{
75 return DirectX::XMMatrixTranslation(v.x, v.y, v.z);
76}
77
78inline DirectX::XMMATRIX ToScaleMatrix(const Vector3& v)
79{
80 return DirectX::XMMatrixScaling(v.x, v.y, v.z);
81}
82
83inline DirectX::XMMATRIX ToRotMatrix(const Vector3& v)
84{
85 return DirectX::XMMatrixRotationRollPitchYaw(v.x, v.y, v.z);
86}
87
88inline DirectX::XMMATRIX ToRotMatrix(const Quaternion& q)
89{
90 return DirectX::XMMatrixRotationQuaternion(ToXMVector(q));
91}
92
93inline DirectX::XMMATRIX ToRotMatrix(const Vector3& a, float r)
94{
95 return DirectX::XMMatrixRotationAxis(ToXMVector(a), r);
96}
97
98inline auto ComposeMatrix(DirectX::FXMVECTOR scale,
99 DirectX::FXMVECTOR rotation,
100 DirectX::FXMVECTOR position) -> DirectX::XMMATRIX
101{
102 auto matrix = DirectX::XMMatrixScalingFromVector(scale) *
103 DirectX::XMMatrixRotationQuaternion(rotation);
104 matrix.r[3] = position;
105 return matrix;
106}
107
108inline auto ComposeMatrix(const Vector3& scale,
109 const Quaternion& rotation,
110 const Vector3& position) -> DirectX::XMMATRIX
111{
112 return ComposeMatrix(
113 ToXMVector(scale),
114 ToXMVector(rotation),
115 ToXMVectorHomogeneous(position)
116 );
117}
118
119inline float GetMaxScaleExtent(DirectX::FXMMATRIX matrix)
120{
121 auto xExtent_v = DirectX::XMVector3Dot(matrix.r[0], matrix.r[0]);
122 auto yExtent_v = DirectX::XMVector3Dot(matrix.r[1], matrix.r[1]);
123 auto zExtent_v = DirectX::XMVector3Dot(matrix.r[2], matrix.r[2]);
124 auto maxExtent_v = DirectX::XMVectorMax(xExtent_v, DirectX::XMVectorMax(yExtent_v, zExtent_v));
125 return sqrt(DirectX::XMVectorGetX(maxExtent_v));
126}
127} // namespace nc
Definition: MatrixUtilities.h:14
A three component vector.
Definition: Vector.h:29