]> git.localhorst.tv Git - blobs.git/commit
randomize creature properties a bit
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Sun, 26 Nov 2017 17:29:12 +0000 (18:29 +0100)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Sun, 26 Nov 2017 17:29:12 +0000 (18:29 +0100)
commit8f6530c75730f901efd6708e4fde7e68a178adf1
tree46dcd3dd6121ca61670a16383b65f5080226687e
parentc51b3bbef5c9b8ab52f55d46f08c5992fe574f70
randomize creature properties a bit
53 files changed:
assets
src/app/Assets.hpp
src/app/app.cpp
src/blobs.cpp
src/const.hpp [deleted file]
src/creature/Creature.hpp
src/creature/Genome.hpp [new file with mode: 0644]
src/creature/LocateResourceGoal.hpp
src/creature/Situation.hpp
src/creature/Steering.hpp
src/creature/creature.cpp
src/graphics/AlphaSprite.hpp
src/graphics/Camera.hpp
src/graphics/Canvas.hpp
src/graphics/CreatureSkin.hpp
src/graphics/Font.hpp
src/graphics/PlanetSurface.hpp
src/graphics/Program.hpp
src/graphics/SunSurface.hpp
src/graphics/gl_traits.hpp
src/graphics/glm.hpp [deleted file]
src/graphics/viewport.cpp
src/io/TokenStreamReader.hpp
src/math/Distribution.hpp [new file with mode: 0644]
src/math/GaloisLFSR.hpp [new file with mode: 0644]
src/math/OctaveNoise.hpp [new file with mode: 0644]
src/math/SimplexNoise.hpp [new file with mode: 0644]
src/math/WorleyNoise.hpp [new file with mode: 0644]
src/math/const.hpp [new file with mode: 0644]
src/math/glm.hpp [new file with mode: 0644]
src/math/noise.cpp [new file with mode: 0644]
src/rand/GaloisLFSR.hpp [deleted file]
src/rand/OctaveNoise.hpp [deleted file]
src/rand/SimplexNoise.hpp [deleted file]
src/rand/WorleyNoise.hpp [deleted file]
src/rand/noise.cpp [deleted file]
src/ui/Widget.hpp
src/ui/align.hpp
src/world/Body.hpp
src/world/Orbit.hpp
src/world/Planet.hpp
src/world/Resource.hpp
src/world/world.cpp
tst/assert.hpp
tst/math/GaloisLFSRTest.cpp [new file with mode: 0644]
tst/math/GaloisLFSRTest.hpp [new file with mode: 0644]
tst/math/StabilityTest.cpp [new file with mode: 0644]
tst/math/StabilityTest.hpp [new file with mode: 0644]
tst/rand/GaloisLFSRTest.cpp [deleted file]
tst/rand/GaloisLFSRTest.hpp [deleted file]
tst/rand/StabilityTest.cpp [deleted file]
tst/rand/StabilityTest.hpp [deleted file]
tst/world/OrbitTest.cpp