From 2d801f2bec3c4de663f33b0f0f198a12f09ef989 Mon Sep 17 00:00:00 2001 From: Tamito Kajiyama Date: Mon, 11 Mar 2013 06:56:51 +0000 Subject: Another big code clean-up patch from Bastien Montagne, thanks again! --- source/blender/freestyle/intern/view_map/SphericalGrid.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/freestyle/intern/view_map/SphericalGrid.cpp') diff --git a/source/blender/freestyle/intern/view_map/SphericalGrid.cpp b/source/blender/freestyle/intern/view_map/SphericalGrid.cpp index 4582fb40b61..2cd8e5ebe66 100644 --- a/source/blender/freestyle/intern/view_map/SphericalGrid.cpp +++ b/source/blender/freestyle/intern/view_map/SphericalGrid.cpp @@ -84,9 +84,9 @@ SphericalGrid::Iterator::Iterator(SphericalGrid& grid, Vec3r& center, real epsil _cell = grid.findCell(_target); #if SPHERICAL_GRID_LOGGING if (G.debug & G_DEBUG_FREESTYLE) { - cout << "Searching for occluders of edge centered at " << _target << " in cell [" - << _cell->boundary[0] << ", " << _cell->boundary[1] << ", " << _cell->boundary[2] - << ", " << _cell->boundary[3] << "] (" << _cell->faces.size() << " occluders)" << endl; + cout << "Searching for occluders of edge centered at " << _target << " in cell [" << + _cell->boundary[0] << ", " << _cell->boundary[1] << ", " << _cell->boundary[2] << + ", " << _cell->boundary[3] << "] (" << _cell->faces.size() << " occluders)" << endl; } #endif @@ -157,7 +157,7 @@ void SphericalGrid::assignCells(OccluderSource& source, GridDensityProvider& den height = _cellSize; // Initialize cell - Cell* b = _cells[i * _cellsY + j] = new Cell(); + Cell *b = _cells[i * _cellsY + j] = new Cell(); b->setDimensions(x, y, width, height); } } -- cgit v1.2.3