Commit Graph

  • c986c9f0b1 Added note that development of PolyVox has now stopped. develop David Williams 2016-11-24 22:47:40 +00:00
  • 9a71004b1e Added ability to check whether previousVoxel has been set. David Williams 2016-05-21 08:34:13 +01:00
  • f4c4bf984c Updated install instructions regarding different Python versions. David Williams 2016-02-07 10:29:04 +00:00
  • fe2c29e013 Compile fix. David Williams 2016-02-07 10:00:07 +00:00
  • 98cce0ea26 Documentation fixes. David Williams 2016-02-07 00:19:18 +00:00
  • c57cb96e80 Replaced LargeVolume reference with PagedVolume. David Williams 2016-02-07 00:13:05 +00:00
  • 817c799fcf Updated tutorial 1 with latest code from BasicExample. David Williams 2016-02-07 00:06:29 +00:00
  • 09c3c2e12f Minor changes to error handling documentation. David Williams 2016-02-06 09:38:46 +00:00
  • dcbc3bd995 Minor changes to threading documentation. David Williams 2016-02-06 09:25:52 +00:00
  • 92c900b774 Minor updates to level-of-detail documentation. David Williams 2016-02-06 09:15:35 +00:00
  • 4f8ae5acea Minor tweaks to texture mapping documentation. David Williams 2016-01-31 17:36:09 +00:00
  • 615c1dc00a Tweaks to lighting documentation. David Williams 2016-01-31 10:32:27 +00:00
  • 3caa86a462 Minor update to 'Principles of PolyVox' David Williams 2016-01-31 10:23:46 +00:00
  • b5e8b63810 Minor documentation tweaks. David Williams 2016-01-31 09:18:20 +00:00
  • 5103563365 Updating documentation. David Williams 2016-01-30 23:23:42 +00:00
  • e0b00fc5ac Updated prerequisites section of PolyVox docs. David Williams 2016-01-28 23:00:16 +00:00
  • 92981f3599 Minor doc update. David Williams 2016-01-28 22:24:55 +00:00
  • 21e6b435a1 Linux compile fix. David Williams 2016-01-25 23:54:34 +01:00
  • 5644f837ca Fixed broken include paths causing compile errors on Linux. David Williams 2016-01-24 13:15:51 +00:00
  • 8d9fffd4c6 Minimal set of changes to get Python bindings building since the last big refactor made PolyVox header only. David Williams 2016-01-21 22:49:20 +00:00
  • 156bcef9c0 Added files which were accidently removed from repository. David Williams 2016-01-19 23:16:02 +00:00
  • 0fe41fe28c Documentation changes. David Williams 2016-01-11 22:54:27 +00:00
  • e433a697cb Removed out-of-date PagedVolume documentation and added a little bit in it's place. David Williams 2016-01-09 09:47:20 +00:00
  • 3d01a8412e Documentation. David Williams 2016-01-03 23:12:28 +00:00
  • abfe63a525 Moved some files into 'Impl' folder David Williams 2016-01-03 22:50:10 +00:00
  • 85b1bbb641 Documentation. David Williams 2016-01-03 22:45:55 +00:00
  • eef0bebacf Various documentation enhancements. David Williams 2016-01-03 22:31:24 +00:00
  • 4d2a27ea8e Removed old Thermite reference! David Williams 2016-01-03 22:21:04 +00:00
  • 6a12a3dc7f Moved some code to .inl David Williams 2016-01-03 22:20:14 +00:00
  • f4ebd4c6a9 Removed unnecessary headers. David Williams 2016-01-03 22:14:33 +00:00
  • 75a2831ae7 Documentation tweaks. David Williams 2016-01-03 18:04:07 +00:00
  • c0b72b6a55 Tidying up comments. David Williams 2016-01-03 17:49:59 +00:00
  • 1444f187a6 More tidying up, moving private code out of main header. David Williams 2016-01-03 09:40:52 +00:00
  • 8678d741b3 Rearranging cubic extractor code. David Williams 2016-01-02 17:38:23 +00:00
  • 64c4c8ce86 Moving around some Marching Cubes code so that only the public stuff is in the header. Tidying up some documentation. David Williams 2016-01-02 13:06:43 +00:00
  • d544de6dd1 Removed deprecated functions. David Williams 2015-12-26 23:41:49 +00:00
  • e89a55d154 Applied default Visual Studio formatting to most files. This is a quick fix for the tabs vs spaces issue that messes up the formatting in any editor (esp. Linux) which handles tabs/spaces differently to Visual Studio. Some parts of the formatting look a bit worse but overall it should be better (or at least more consistent). David Williams 2015-12-26 23:11:27 +00:00
  • b3ca051878 Changed 'embedded' licenses from zlib to MIT. David Williams 2015-12-26 21:45:41 +00:00
  • 9a8e816485 Replaced uint32_t with size_t. David Williams 2015-12-20 21:59:27 +00:00
  • 1e9fdf074a Removed the old LargeVolume and SimpleVolume classes, which are now replaced by PagedVolume. David Williams 2015-12-20 21:22:29 +00:00
  • 403189f357 Removed PolyVoxForwardDeclarations.h. It was a source of confusion because the forward declarations often got out of sync with the real definitions, resulting in confusing template error messages. Furthermore, it does not appear to have actually hurt compile times so I guess it wasn't that useful (or wasn't being used to it's fullest potential). Overall I think PolyVox is not large enough to really benefit from this. David Williams 2015-12-20 21:19:20 +00:00
  • 354b6aa9d0 When PolyVox files include other PolyVox files the 'PolyVox' part of the path is not needed. This is only needed when examples, tests, and external applications include PolyVox. David Williams 2015-12-20 20:56:37 +00:00
  • 4fdecf42eb Removing unused code, tidying up. David Williams 2015-12-19 15:29:56 +00:00
  • 74dfaa293f Fixed usage of region which was too large for the cubic surface extractor. David Williams 2015-12-19 15:26:20 +00:00
  • 9e600c0bcb Refactoring CubicSurfaceExtractor to free functions rather than just wrapping a class. David Williams 2015-12-17 22:57:41 +00:00
  • 43bb832c46 Refactoring CubicSurfaceExtractor to free functions rather than just wrapping a class. David Williams 2015-12-08 23:50:41 +00:00
  • 9617197893 Refactoring CubicSurfaceExtractor to free functions rather than just wrapping a class. David Williams 2015-12-08 23:29:38 +00:00
  • 65a973f94e Started refactoring CubicSurfaceExtractor to free functions rather than just wrapping a class. David Williams 2015-12-07 23:45:24 +00:00
  • 28a3d78354 Removed old deprecated code. David Williams 2015-11-30 07:50:32 +00:00
  • ed94fc6f25 Removed old/unused code. David Williams 2015-11-30 07:47:59 +00:00
  • 7fc9990b79 Fixed warning. David Williams 2015-11-29 22:50:09 +00:00
  • 20ff44c814 Changed license in readme. David Williams 2015-11-29 22:12:01 +00:00
  • 280c2fdeaa Changed license from zlib to MIT. David Williams 2015-11-29 22:08:30 +00:00
  • 6d2dcc7d02 Fixing case of file extension (step 2 of 2) David Williams 2015-11-29 22:06:57 +00:00
  • 67a9d90c0b Fixing case of file extension (step 1 of 2) David Williams 2015-11-29 22:06:23 +00:00
  • 735b0ab6b1 Fix compile on Linux Matt Williams 2015-06-22 12:06:39 +01:00
  • 920c78f4d1 Added sobel gradient back in. David Williams 2015-06-16 00:00:32 +02:00
  • f8e1bb8452 Fix for broken normals in marching cubes code. David Williams 2015-06-14 13:59:51 +02:00
  • 14cac713bd Added comment. David Williams 2015-06-01 14:30:38 +02:00
  • ff567aa9f8 Added performance notes. David Williams 2015-05-29 23:09:51 +02:00
  • 5aa631da8f Merge branch 'feature/extractor-optimizations' into develop David Williams 2015-05-29 22:39:57 +02:00
  • 8c35399fc6 Comments and renaming variables. David Williams 2015-05-29 20:34:03 +02:00
  • a0c32e22b7 Added comment. David Williams 2015-05-29 17:41:40 +02:00
  • 96e747d0c3 Revert "Split the code which generates vertices and indices for a single cell into a separate function." David Williams 2015-05-29 17:28:07 +02:00
  • 942bb37981 Revert "Passing sampled voxel." David Williams 2015-05-29 17:28:01 +02:00
  • ebab89b9ad Passing sampled voxel. David Williams 2015-05-28 23:42:50 +02:00
  • 2fa291d16f Split the code which generates vertices and indices for a single cell into a separate function. David Williams 2015-05-28 23:26:50 +02:00
  • f32bb1d1ed Reduced array accesses. David Williams 2015-05-28 23:02:14 +02:00
  • 92db006250 Fixed compile warnings. David Williams 2015-05-28 22:40:25 +02:00
  • 01963bd462 Added comment about performance. David Williams 2015-05-28 22:37:05 +02:00
  • 68bdd9ca99 Tidying up. David Williams 2015-05-28 21:51:57 +02:00
  • ac7bec0c45 Eliminated unused variables. David Williams 2015-05-28 21:46:50 +02:00
  • 6493e88d4c Removed unnecessary condition. David Williams 2015-05-27 22:58:46 +02:00
  • edd1af14ca Removed unnecessary setting of sampler position. David Williams 2015-05-27 22:57:48 +02:00
  • ccedb0e294 Replaced separate arrays with arrays of vectors. David Williams 2015-05-27 22:55:36 +02:00
  • baf5cf2cab Removed unneeded memsets. David Williams 2015-05-27 07:25:04 +02:00
  • 48a6929a7a Tidying up. David Williams 2015-05-26 21:24:38 +02:00
  • 04c4e49aa1 Fully eliminated MarchingCubesSurfaceExtractor class. It's now only a standalone function called 'extractMarchingCubesMesh'. David Williams 2015-05-25 21:23:27 +02:00
  • 37db0bac52 Moved gradient calculation outside of class. David Williams 2015-05-25 21:16:29 +02:00
  • e4ef845045 Removed sobel gradient calculation code. Removed m_controller member. David Williams 2015-05-25 21:00:50 +02:00
  • b3ce982ef3 Removed some member variables. David Williams 2015-05-25 20:51:42 +02:00
  • d353685ce9 Restructuring code... David Williams 2015-05-25 20:42:40 +02:00
  • 1d51ee8d0a Revert "Rather ugly split of some code into a separate function, to keep the main loop as small and simple as possible. To be tidied up shortly." David Williams 2015-05-25 20:35:55 +02:00
  • c384fbfea8 Revert "Eliminated member variable." David Williams 2015-05-25 20:35:47 +02:00
  • 96ec47a972 Eliminated member variable. David Williams 2015-05-25 17:45:40 +02:00
  • 13be35aac9 Rather ugly split of some code into a separate function, to keep the main loop as small and simple as possible. To be tidied up shortly. David Williams 2015-05-25 17:37:30 +02:00
  • e0ce93acb1 Added comments. David Williams 2015-05-25 16:45:52 +02:00
  • b353cd1ce8 Removed unneeded conditions. David Williams 2015-05-25 16:39:30 +02:00
  • ecc06ba986 Changed the way samplers are used for a minor speed improvement. David Williams 2015-05-25 12:05:15 +02:00
  • f4941fb73c Minor tweaks. David Williams 2015-05-24 23:58:51 +02:00
  • c8124097e3 Using a bit less memory. David Williams 2015-05-24 23:32:52 +02:00
  • efb9844fe2 Merge branch 'develop' into feature/extractor-optimizations David Williams 2015-05-24 21:17:19 +02:00
  • a34eda6250 Simple optimization. David Williams 2015-05-24 21:17:09 +02:00
  • 69349d95cd Tidying up. David Williams 2015-05-24 21:01:01 +02:00
  • eb3727de30 Vastly simplified logic... hard to believe I made it so complicated :-) David Williams 2015-05-24 20:41:46 +02:00
  • 32df8be8da Tweaked conditions and comments. David Williams 2015-05-24 07:59:03 +02:00
  • 4e9b0e374b Moved code into outer loops. David Williams 2015-05-24 00:02:27 +02:00
  • 8e9e122c03 Merge branch 'develop' into feature/extractor-optimizations David Williams 2015-05-23 21:22:58 +02:00
  • 304e3d8f7a Faster tests when moving sampler. David Williams 2015-05-23 21:22:29 +02:00
  • cee15a145f Avoid setting the sampler position every iteration. David Williams 2015-05-23 17:45:16 +02:00