basic marching cubes working

This commit is contained in:
2026-04-11 10:15:50 +02:00
parent a8bcaeee23
commit 8e8d5ca1c9
14 changed files with 784 additions and 127 deletions
+14 -1
View File
@@ -11,7 +11,20 @@
"program": "${workspaceRoot}/build/FluidSimulation",
"args": [],
"cwd": "${workspaceRoot}/build",
"MIMode": "lldb"
"MIMode": "gdb",
"setupCommands": [
{
"text": "-enable-pretty-printing",
"description": "enable pretty printing",
"ignoreFailures": false
},
{
"text": "source ${workspaceRoot}/Seele/gdb/Seele.py",
"description": "load Seele python script",
"ignoreFailures": false
}
],
}
]
}