1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-21 04:56:01 +08:00

Fix file encoding

This commit is contained in:
Nick Hastings
2025-05-17 14:17:42 -04:00
committed by Nicholas Hastings
parent 967236b317
commit 7d972daefe
2360 changed files with 2363 additions and 2363 deletions

View File

@ -1,4 +1,4 @@
//===== Copyright <EFBFBD> 1996-2005, Valve Corporation, All rights reserved. ======//
//===== Copyright © 1996-2005, Valve Corporation, All rights reserved. ======//
//
// Purpose:
//
@ -2202,7 +2202,7 @@ inline bool CloseEnough( const Vector &a, const Vector &b, float epsilon = EQUAL
// Fast compare
// maxUlps is the maximum error in terms of Units in the Last Place. This
// specifies how big an error we are willing to accept in terms of the value
// of the least significant digit of the floating point number<EFBFBD>s
// of the least significant digit of the floating point number’s
// representation. maxUlps can also be interpreted in terms of how many
// representable floats we are willing to accept between A and B.
// This function will allow maxUlps-1 floats between A and B.