From b92d3fbfc03b562db99c5a4f82b736ca668e2d45 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 2 Nov 2012 15:17:42 +0100 Subject: [PATCH] Updated changelog --- CHANGELOG.txt | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 3a7545d3..72741993 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -35,3 +35,11 @@ Usage of the new raycasting is demonstrated by a unit test. Changes to AmbientOcclusionCalculator ------------------------------------- The AmbientOcclusionCalculator has also been unclassed and is now called calculateAmbientOcclusion. The unit test has been updated to demsonstrate the new usage. + +Changes to A* pathfinder +------------------------ +The A* pathfinder has always had differnt (but equally valid) results when building in Visual Studio vs. GCC. This is now fixed and results are consistent between platforms. + +Copy and move semantics +----------------------- +All volume classes now have protecected copy constructors and assignment operators to prevent you from accidently copying them (which is expensive). Look at the VolumeResample if you really do want to copy some volume data.