From c23da7a5c9079702a33ea2309d9ee1d714481237 Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Sun, 14 Mar 2021 22:36:35 -0400 Subject: BLI: Add "is_zero" method to float2 and float3 types This is not necessary, but a nice convenience to avoid using `is_zero_v3`. Differential Revision: https://developer.blender.org/D10713 --- source/blender/blenlib/BLI_float3.hh | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source/blender/blenlib/BLI_float3.hh') diff --git a/source/blender/blenlib/BLI_float3.hh b/source/blender/blenlib/BLI_float3.hh index 9a8870963bf..7e49cc89b52 100644 --- a/source/blender/blenlib/BLI_float3.hh +++ b/source/blender/blenlib/BLI_float3.hh @@ -174,6 +174,11 @@ struct float3 { return len_squared_v3(*this); } + bool is_zero() const + { + return this->x == 0.0f && this->y == 0.0f && this->z == 0.0f; + } + void reflect(const float3 &normal) { *this = this->reflected(normal); -- cgit v1.2.3