Fix verbose compiler warning

Just append 'f' to suppress verbose compiler warnings...
This commit is contained in:
Kawe Mazidjatari 2023-02-26 19:39:24 +01:00
parent 5ab71f191e
commit 73d71992f3

View File

@ -46,5 +46,5 @@ static float TriangleArea(const Vector3D& p0, const Vector3D& p1, const Vector3D
Vector3D cross;
CrossProduct(e0, e1, cross);
return 0.5 * cross.Length();
return 0.5f * cross.Length();
}