├── .gitignore ├── .pypirc ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── appveyor.yml ├── appveyor ├── install.ps1 └── run_with_compiler.cmd ├── platec_src ├── heightmap.cpp ├── heightmap.hpp ├── lithosphere.cpp ├── lithosphere.hpp ├── noise.cpp ├── noise.hpp ├── plate.cpp ├── plate.hpp ├── platecapi.cpp ├── platecapi.hpp ├── platecmodule.cpp ├── rectangle.cpp ├── rectangle.hpp ├── simplerandom.cpp ├── simplerandom.hpp ├── simplexnoise.cpp ├── simplexnoise.hpp ├── sqrdmd.cpp ├── sqrdmd.hpp ├── utils.cpp └── utils.hpp ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/.gitignore -------------------------------------------------------------------------------- /.pypirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/.pypirc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/appveyor.yml -------------------------------------------------------------------------------- /appveyor/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/appveyor/install.ps1 -------------------------------------------------------------------------------- /appveyor/run_with_compiler.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/appveyor/run_with_compiler.cmd -------------------------------------------------------------------------------- /platec_src/heightmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/platec_src/heightmap.cpp -------------------------------------------------------------------------------- /platec_src/heightmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/platec_src/heightmap.hpp -------------------------------------------------------------------------------- /platec_src/lithosphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/platec_src/lithosphere.cpp -------------------------------------------------------------------------------- /platec_src/lithosphere.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/platec_src/lithosphere.hpp -------------------------------------------------------------------------------- /platec_src/noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/platec_src/noise.cpp -------------------------------------------------------------------------------- /platec_src/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/platec_src/noise.hpp -------------------------------------------------------------------------------- /platec_src/plate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/platec_src/plate.cpp -------------------------------------------------------------------------------- /platec_src/plate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/platec_src/plate.hpp -------------------------------------------------------------------------------- /platec_src/platecapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/platec_src/platecapi.cpp -------------------------------------------------------------------------------- /platec_src/platecapi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/platec_src/platecapi.hpp -------------------------------------------------------------------------------- /platec_src/platecmodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/platec_src/platecmodule.cpp -------------------------------------------------------------------------------- /platec_src/rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/platec_src/rectangle.cpp -------------------------------------------------------------------------------- /platec_src/rectangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/platec_src/rectangle.hpp -------------------------------------------------------------------------------- /platec_src/simplerandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/platec_src/simplerandom.cpp -------------------------------------------------------------------------------- /platec_src/simplerandom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/platec_src/simplerandom.hpp -------------------------------------------------------------------------------- /platec_src/simplexnoise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/platec_src/simplexnoise.cpp -------------------------------------------------------------------------------- /platec_src/simplexnoise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/platec_src/simplexnoise.hpp -------------------------------------------------------------------------------- /platec_src/sqrdmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/platec_src/sqrdmd.cpp -------------------------------------------------------------------------------- /platec_src/sqrdmd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/platec_src/sqrdmd.hpp -------------------------------------------------------------------------------- /platec_src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/platec_src/utils.cpp -------------------------------------------------------------------------------- /platec_src/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/platec_src/utils.hpp -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindwerks/pyplatec/HEAD/setup.py --------------------------------------------------------------------------------