Revert "BLI: add conversion from float2 to float3"

This reverts commit 6ac0a3d83c.
This commit is contained in:
Jacques Lucke 2021-01-22 13:40:45 +01:00
parent 2ba2d2bd9d
commit 644976548d
1 changed files with 0 additions and 5 deletions

View File

@ -47,11 +47,6 @@ struct float2 {
return &x;
}
operator float3() const
{
return float3(x, y, 0.0f);
}
float length() const
{
return len_v2(*this);