README 833 B

123456789101112131415161718192021
  1. Computing 3D scene from a permutations of a number string.
  2. Based on the ideas from <https://github.com/Eidonko/Permutation-feed-povray>.
  3. Example:
  4. Starting with a string, for example 234142243.
  5. We then consider all the permutations of the string, and for each permutation we divide the string into three substrings.
  6. For example, for the identity permutation we get: 234, 142, 243.
  7. Since 4 is the maximal number in the stream, we will be interpreting each substrings as integers base 5.
  8. In our example we get numbers: 69, 47, 73.
  9. We treat those three numbers as coordinates to put a cube at.
  10. We also assign different light sources to the cubes, at random.
  11. We also place some lights at various positions throughout the scene.
  12. this is WORK IN PROGRESS
  13. feature list:
  14. - proper UI
  15. - moving lights
  16. - connecting some positions with tubes