From ca6ef58b1ee8521e4b940ee4883dee714960e413 Mon Sep 17 00:00:00 2001 From: LogicParrot Date: Fri, 5 Feb 2016 23:45:45 +0200 Subject: Bulk clearing of whitespace --- src/VoronoiMap.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/VoronoiMap.cpp') diff --git a/src/VoronoiMap.cpp b/src/VoronoiMap.cpp index 5ad634fe4..4c0aab61a 100644 --- a/src/VoronoiMap.cpp +++ b/src/VoronoiMap.cpp @@ -87,9 +87,9 @@ int cVoronoiMap::GetValueAt( { int CellX = a_X / m_CellSize; int CellY = a_Y / m_CellSize; - + UpdateCell(CellX, CellY); - + // Get 5x5 neighboring cell seeds, compare distance to each. Return the value in the minumim-distance cell int NearestSeedX = 0, NearestSeedY = 0; int MinDist = m_CellSize * m_CellSize * 16; // There has to be a cell closer than this @@ -101,7 +101,7 @@ int cVoronoiMap::GetValueAt( { int SeedX = m_SeedX[x][y]; int SeedY = m_SeedZ[x][y]; - + int Dist = (SeedX - a_X) * (SeedX - a_X) + (SeedY - a_Y) * (SeedY - a_Y); if (Dist < MinDist) { @@ -187,7 +187,7 @@ void cVoronoiMap::UpdateCell(int a_CellX, int a_CellZ) { return; } - + // Update the cell cache for the new cell position: int NoiseBaseX = a_CellX - 2; int NoiseBaseZ = a_CellZ - 2; -- cgit v1.2.3