Jolt Physics
A multi core friendly Game Physics Engine
Loading...
Searching...
No Matches
Vec3.h
Go to the documentation of this file.
1// Jolt Physics Library (https://github.com/jrouwe/JoltPhysics)
2// SPDX-FileCopyrightText: 2021 Jorrit Rouwe
3// SPDX-License-Identifier: MIT
4
5#pragma once
6
8#include <Jolt/Math/Float3.h>
9#include <Jolt/Math/Swizzle.h>
10#include <Jolt/Math/MathTypes.h>
11
13
16class [[nodiscard]] alignas(JPH_VECTOR_ALIGNMENT) Vec3
17{
18public:
20
21 // Underlying vector type
22#if defined(JPH_USE_SSE)
23 using Type = __m128;
24#elif defined(JPH_USE_NEON)
25 using Type = float32x4_t;
26#else
28#endif
29
30 // Argument type
32
34 Vec3() = default;
35 Vec3(const Vec3 &inRHS) = default;
36 Vec3 & operator = (const Vec3 &inRHS) = default;
37 explicit JPH_INLINE Vec3(Vec4Arg inRHS);
38 JPH_INLINE Vec3(Type inRHS) : mValue(inRHS) { CheckW(); }
39
41 explicit JPH_INLINE Vec3(const Float3 &inV);
42
44 JPH_INLINE Vec3(float inX, float inY, float inZ);
45
47 static JPH_INLINE Vec3 sZero();
48
50 static JPH_INLINE Vec3 sOne();
51
53 static JPH_INLINE Vec3 sNaN();
54
56 static JPH_INLINE Vec3 sAxisX() { return Vec3(1, 0, 0); }
57 static JPH_INLINE Vec3 sAxisY() { return Vec3(0, 1, 0); }
58 static JPH_INLINE Vec3 sAxisZ() { return Vec3(0, 0, 1); }
59
61 static JPH_INLINE Vec3 sReplicate(float inV);
62
64 static JPH_INLINE Vec3 sLoadFloat3Unsafe(const Float3 &inV);
65
67 static JPH_INLINE Vec3 sMin(Vec3Arg inV1, Vec3Arg inV2);
68
70 static JPH_INLINE Vec3 sMax(Vec3Arg inV1, Vec3Arg inV2);
71
73 static JPH_INLINE Vec3 sClamp(Vec3Arg inV, Vec3Arg inMin, Vec3Arg inMax);
74
76 static JPH_INLINE UVec4 sEquals(Vec3Arg inV1, Vec3Arg inV2);
77
79 static JPH_INLINE UVec4 sLess(Vec3Arg inV1, Vec3Arg inV2);
80
82 static JPH_INLINE UVec4 sLessOrEqual(Vec3Arg inV1, Vec3Arg inV2);
83
85 static JPH_INLINE UVec4 sGreater(Vec3Arg inV1, Vec3Arg inV2);
86
88 static JPH_INLINE UVec4 sGreaterOrEqual(Vec3Arg inV1, Vec3Arg inV2);
89
91 static JPH_INLINE Vec3 sFusedMultiplyAdd(Vec3Arg inMul1, Vec3Arg inMul2, Vec3Arg inAdd);
92
94 static JPH_INLINE Vec3 sSelect(Vec3Arg inNotSet, Vec3Arg inSet, UVec4Arg inControl);
95
97 static JPH_INLINE Vec3 sOr(Vec3Arg inV1, Vec3Arg inV2);
98
100 static JPH_INLINE Vec3 sXor(Vec3Arg inV1, Vec3Arg inV2);
101
103 static JPH_INLINE Vec3 sAnd(Vec3Arg inV1, Vec3Arg inV2);
104
108 static JPH_INLINE Vec3 sUnitSpherical(float inTheta, float inPhi);
109
111 JPH_EXPORT static const StaticArray<Vec3, 1026> sUnitSphere;
112
114 template <class Random>
115 static inline Vec3 sRandom(Random &inRandom);
116
118#if defined(JPH_USE_SSE)
119 JPH_INLINE float GetX() const { return _mm_cvtss_f32(mValue); }
120 JPH_INLINE float GetY() const { return mF32[1]; }
121 JPH_INLINE float GetZ() const { return mF32[2]; }
122#elif defined(JPH_USE_NEON)
123 JPH_INLINE float GetX() const { return vgetq_lane_f32(mValue, 0); }
124 JPH_INLINE float GetY() const { return vgetq_lane_f32(mValue, 1); }
125 JPH_INLINE float GetZ() const { return vgetq_lane_f32(mValue, 2); }
126#else
127 JPH_INLINE float GetX() const { return mF32[0]; }
128 JPH_INLINE float GetY() const { return mF32[1]; }
129 JPH_INLINE float GetZ() const { return mF32[2]; }
130#endif
131
133 JPH_INLINE void SetX(float inX) { mF32[0] = inX; }
134 JPH_INLINE void SetY(float inY) { mF32[1] = inY; }
135 JPH_INLINE void SetZ(float inZ) { mF32[2] = mF32[3] = inZ; } // Assure Z and W are the same
136
138 JPH_INLINE void Set(float inX, float inY, float inZ) { *this = Vec3(inX, inY, inZ); }
139
141 JPH_INLINE float operator [] (uint inCoordinate) const { JPH_ASSERT(inCoordinate < 3); return mF32[inCoordinate]; }
142
144 JPH_INLINE void SetComponent(uint inCoordinate, float inValue) { JPH_ASSERT(inCoordinate < 3); mF32[inCoordinate] = inValue; mValue = sFixW(mValue); } // Assure Z and W are the same
145
147 JPH_INLINE bool operator == (Vec3Arg inV2) const;
148 JPH_INLINE bool operator != (Vec3Arg inV2) const { return !(*this == inV2); }
149
151 JPH_INLINE bool IsClose(Vec3Arg inV2, float inMaxDistSq = 1.0e-12f) const;
152
154 JPH_INLINE bool IsNearZero(float inMaxDistSq = 1.0e-12f) const;
155
157 JPH_INLINE bool IsNormalized(float inTolerance = 1.0e-6f) const;
158
160 JPH_INLINE bool IsNaN() const;
161
163 JPH_INLINE Vec3 operator * (Vec3Arg inV2) const;
164
166 JPH_INLINE Vec3 operator * (float inV2) const;
167
169 friend JPH_INLINE Vec3 operator * (float inV1, Vec3Arg inV2);
170
172 JPH_INLINE Vec3 operator / (float inV2) const;
173
175 JPH_INLINE Vec3 & operator *= (float inV2);
176
178 JPH_INLINE Vec3 & operator *= (Vec3Arg inV2);
179
181 JPH_INLINE Vec3 & operator /= (float inV2);
182
184 JPH_INLINE Vec3 operator + (Vec3Arg inV2) const;
185
187 JPH_INLINE Vec3 & operator += (Vec3Arg inV2);
188
190 JPH_INLINE Vec3 operator - () const;
191
193 JPH_INLINE Vec3 operator - (Vec3Arg inV2) const;
194
196 JPH_INLINE Vec3 & operator -= (Vec3Arg inV2);
197
199 JPH_INLINE Vec3 operator / (Vec3Arg inV2) const;
200
202 template<uint32 SwizzleX, uint32 SwizzleY, uint32 SwizzleZ>
203 JPH_INLINE Vec3 Swizzle() const;
204
206 JPH_INLINE Vec4 SplatX() const;
207
209 JPH_INLINE Vec4 SplatY() const;
210
212 JPH_INLINE Vec4 SplatZ() const;
213
215 JPH_INLINE int GetLowestComponentIndex() const;
216
218 JPH_INLINE int GetHighestComponentIndex() const;
219
221 JPH_INLINE Vec3 Abs() const;
222
224 JPH_INLINE Vec3 Reciprocal() const;
225
227 JPH_INLINE Vec3 Cross(Vec3Arg inV2) const;
228
230 JPH_INLINE Vec3 DotV(Vec3Arg inV2) const;
231
233 JPH_INLINE Vec4 DotV4(Vec3Arg inV2) const;
234
236 JPH_INLINE float Dot(Vec3Arg inV2) const;
237
239 JPH_INLINE float LengthSq() const;
240
242 JPH_INLINE float Length() const;
243
245 JPH_INLINE Vec3 Normalized() const;
246
248 JPH_INLINE Vec3 NormalizedOr(Vec3Arg inZeroValue) const;
249
251 JPH_INLINE void StoreFloat3(Float3 *outV) const;
252
254 JPH_INLINE UVec4 ToInt() const;
255
257 JPH_INLINE UVec4 ReinterpretAsInt() const;
258
260 JPH_INLINE float ReduceMin() const;
261
263 JPH_INLINE float ReduceMax() const;
264
266 JPH_INLINE Vec3 Sqrt() const;
267
269 JPH_INLINE Vec3 GetNormalizedPerpendicular() const;
270
272 JPH_INLINE Vec3 GetSign() const;
273
275 friend ostream & operator << (ostream &inStream, Vec3Arg inV)
276 {
277 inStream << inV.mF32[0] << ", " << inV.mF32[1] << ", " << inV.mF32[2];
278 return inStream;
279 }
280
282 JPH_INLINE void CheckW() const;
283
285 static JPH_INLINE Type sFixW(Type inValue);
286
287 union
288 {
290 float mF32[4];
291 };
292};
293
294static_assert(std::is_trivial<Vec3>(), "Is supposed to be a trivial type!");
295
297
298#include "Vec3.inl"
#define JPH_EXPORT
Definition Core.h:271
unsigned int uint
Definition Core.h:481
#define JPH_NAMESPACE_END
Definition Core.h:414
#define JPH_NAMESPACE_BEGIN
Definition Core.h:408
DVec3 operator*(double inV1, DVec3Arg inV2)
Definition DVec3.inl:456
#define JPH_ASSERT(...)
Definition IssueReporting.h:33
const Vec3 Vec3Arg
Definition MathTypes.h:19
#define JPH_OVERRIDE_NEW_DELETE
Macro to override the new and delete functions.
Definition Memory.h:31
Class that holds 3 floats. Used as a storage class. Convert to Vec3 for calculations.
Definition Float3.h:13
Simple variable length array backed by a fixed size buffer.
Definition StaticArray.h:14
Definition UVec4.h:12
Definition Vec3.h:17
static JPH_INLINE Type sFixW(Type inValue)
Internal helper function that ensures that the Z component is replicated to the W component to preven...
Vec4::Type Type
Definition Vec3.h:27
static JPH_INLINE Vec3 sAxisX()
Vectors with the principal axis.
Definition Vec3.h:56
JPH_INLINE void SetComponent(uint inCoordinate, float inValue)
Set float component by index.
Definition Vec3.h:144
Vec3(const Vec3 &inRHS)=default
static JPH_INLINE Vec3 sAxisY()
Definition Vec3.h:57
JPH_INLINE float GetX() const
Get individual components.
Definition Vec3.h:127
JPH_INLINE void SetY(float inY)
Definition Vec3.h:134
JPH_INLINE Vec3(Type inRHS)
Definition Vec3.h:38
JPH_INLINE void SetZ(float inZ)
Definition Vec3.h:135
JPH_INLINE void CheckW() const
Internal helper function that checks that W is equal to Z, so e.g. dividing by it should not generate...
static JPH_INLINE Vec3 sAxisZ()
Definition Vec3.h:58
JPH_INLINE void SetX(float inX)
Set individual components.
Definition Vec3.h:133
Type mValue
Definition Vec3.h:289
JPH_INLINE float GetY() const
Definition Vec3.h:128
float mF32[4]
Definition Vec3.h:290
JPH_INLINE void Set(float inX, float inY, float inZ)
Set all components.
Definition Vec3.h:138
JPH_INLINE float GetZ() const
Definition Vec3.h:129
Vec3()=default
Constructor.
JPH_INLINE Vec3 Swizzle() const
Swizzle the elements in inV.
Definition Vec4.h:14
{ float mData[4] Type
Definition Vec4.h:24