cosmetics

This commit is contained in:
UbitUmarov
2023-02-08 03:00:20 +00:00
parent 0ad8d8da7b
commit d0be98bacb
2 changed files with 4 additions and 5 deletions

View File

@@ -2068,7 +2068,7 @@ namespace OpenSim.Region.PhysicsModule.ubOde
}
}
h0 = rx * rx + ry * ry + 1.0f;
h0 = 1.0f / (float) Math.Sqrt(h0);
h0 = 1.0f / MathF.Sqrt(h0);
return new Vector3(rx * h0, ry * h0, h0);
}