From 644976548d59fd77593dc2ab91700a52ff17cc0b Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Fri, 22 Jan 2021 13:40:45 +0100 Subject: [PATCH] Revert "BLI: add conversion from float2 to float3" This reverts commit 6ac0a3d83c8e5a39bd5356aa0d68e3166bd91e82. --- source/blender/blenlib/BLI_float2.hh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/source/blender/blenlib/BLI_float2.hh b/source/blender/blenlib/BLI_float2.hh index 697721db8c7..2a5320e4c35 100644 --- a/source/blender/blenlib/BLI_float2.hh +++ b/source/blender/blenlib/BLI_float2.hh @@ -47,11 +47,6 @@ struct float2 { return &x; } - operator float3() const - { - return float3(x, y, 0.0f); - } - float length() const { return len_v2(*this);