Initial release v1.0.0 - Isometric Terrain Generator

- Procedural terrain generation using Perlin noise
- OpenGL 3D rendering with isometric view
- Biome-based coloring system (7 biomes)
- Real-time camera controls (zoom, height adjustment)
- Modular architecture with config/settings.py
- Complete Italian documentation (8 chapters)
- Interactive controls: R to regenerate, arrows for camera
This commit is contained in:
John Doe
2025-10-24 15:20:12 +02:00
commit 01799256e7
24 changed files with 5299 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
# Virtual Environment
venv/
env/
ENV/
.venv
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Project specific
*.png
*.jpg
*.jpeg
heightmap_*.txt
# Backup files
*.backup
*_backup_*.py
config/settings_backup_*.py