Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
m-schuetz committed Feb 2, 2018
1 parent 4ede136 commit 9a349af
Show file tree
Hide file tree
Showing 10 changed files with 4,646 additions and 6 deletions.
13 changes: 13 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"version": "0.2.0",
"configurations": [

{
"type": "node",
"request": "launch",
"name": "Launch Program",
"restart": true,
"program": "${workspaceFolder}/build/potree_server/potree_server.js"
}
]
}
18 changes: 18 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"workbench.editor.enablePreview": false,
"files.associations": {
"*.vs": "cpp",
"*.fs": "cpp"
},
"files.trimTrailingWhitespace": false,
"editor.fontSize": 16,
"editor.autoIndent": false,
"editor.detectIndentation": false,
"editor.renderWhitespace": "all",
"editor.insertSpaces": false,
"editor.minimap.enabled": false,
"editor.autoClosingBrackets": false,
"editor.formatOnType": false,
"editor.acceptSuggestionOnEnter": "off",
"editor.acceptSuggestionOnCommitCharacter": false,
}
1 change: 0 additions & 1 deletion build/potree_server/potree_server.js
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,6 @@ function potreeCheckRegionThreshold(pointclouds, box, minLevel, maxLevel, thresh
return;
}


let user = req.connection.user;
let username = user.substring(user.lastIndexOf("\\") + 1);

Expand Down
284 changes: 284 additions & 0 deletions build/potree_server/potree_server.log

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/potree_server/resources/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"port": 3000,
"wwwroot": "D:/dev/workspaces/potree/develop/",
"wwwroot": "C:/dev/workspaces/potree/develop/",
"outputDirectory": "D:/dev/temp",
"extractRegionExe": "bin/PotreeExtractRegion.exe",

Expand Down
2 changes: 1 addition & 1 deletion build/potree_server/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"port": 3000,
"wwwroot": "D:/dev/workspaces/potree/develop/",
"wwwroot": "C:/dev/workspaces/potree/develop/",
"outputDirectory": "D:/dev/temp",
"extractRegionExe": "bin/PotreeExtractRegion.exe",

Expand Down
Loading

0 comments on commit 9a349af

Please sign in to comment.