height map generator

This commit is contained in:
2024-03-24 21:36:26 -04:00
commit e9757a5371
13 changed files with 4650 additions and 0 deletions

19
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,19 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "cppvsdbg",
"stopAtEntry": false,
// "console": "externalTerminal",
"request": "launch",
"name": "Debug",
"program": "${workspaceRoot}/target/debug/phos.exe",
"args": [],
"cwd": "${workspaceRoot}",
"preLaunchTask": "build",
}
]
}

3
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"cmake.configureOnOpen": false
}

15
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,15 @@
{
"version": "2.0.0",
"tasks":[
{
"type":"cargo",
"command":"build",
"args":[],
"group": {
"kind": "build",
"isDefault": true
},
"label":"build"
}
]
}