(svn r23091) -Codechange: rename some Get*Z functions to Get*PixelZ functions if they return the Z in pixels (like TilePixelHeight)

This commit is contained in:
rubidium
2011-11-04 10:18:13 +00:00
parent ba1ee9304d
commit de980ef0f9
52 changed files with 322 additions and 322 deletions

View File

@@ -268,13 +268,13 @@ protected: // These functions should not be called outside acceleration code.
}
/**
* Road vehicles have to use GetSlopeZ() to compute their height
* Road vehicles have to use GetSlopePixelZ() to compute their height
* if they are reversing because in that case, their direction
* is not parallel with the road. It is safe to return \c true
* even if it is not reversing.
* @return are we (possibly) reversing?
*/
FORCEINLINE bool HasToUseGetSlopeZ()
FORCEINLINE bool HasToUseGetSlopePixelZ()
{
const RoadVehicle *rv = this->First();