forked from truevisionai/designer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1722746
Showing
736 changed files
with
97,617 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# See http://help.github.com/ignore-files/ for more about ignoring files. | ||
|
||
# compiled output | ||
/builds | ||
/release | ||
/dist | ||
/tmp | ||
/out-tsc | ||
# Only exists if Bazel was run | ||
/bazel-out | ||
|
||
# dependencies | ||
/node_modules | ||
|
||
# profiling files | ||
chrome-profiler-events.json | ||
speed-measure-plugin.json | ||
|
||
# IDEs and editors | ||
*.idea | ||
.project | ||
.classpath | ||
.c9/ | ||
*.launch | ||
.settings/ | ||
*.sublime-workspace | ||
|
||
# IDE - VSCode | ||
.vscode/* | ||
!.vscode/settings.json | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
!.vscode/extensions.json | ||
.history/* | ||
|
||
# misc | ||
/.sass-cache | ||
/connect.lock | ||
/coverage | ||
/libpeerconnection.log | ||
npm-debug.log | ||
yarn-error.log | ||
testem.log | ||
/typings | ||
*venv | ||
|
||
# System Files | ||
.DS_Store | ||
Thumbs.db | ||
|
||
protos/csharp | ||
scenario | ||
bin | ||
*.pyc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
{ | ||
// 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": [ | ||
{ | ||
"name": "Electron-File", | ||
"type": "chrome", | ||
"request": "launch", | ||
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron", | ||
"windows": { | ||
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd" | ||
}, | ||
"runtimeArgs": [ | ||
"${workspaceRoot}/main.js", | ||
"--remote-debugging-port=9222", | ||
"--open-dev-tools", | ||
"--disable-splash", | ||
], | ||
"webRoot": "${workspaceRoot}" | ||
}, | ||
{ | ||
"name": "Electron-Localhost", | ||
"type": "chrome", | ||
"request": "launch", | ||
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron", | ||
"windows": { | ||
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd" | ||
}, | ||
"runtimeArgs": [ | ||
"${workspaceRoot}/main.js", | ||
"--remote-debugging-port=9222", | ||
"--open-dev-tools", | ||
"--disable-splash", | ||
"--locahost" | ||
], | ||
"webRoot": "${workspaceRoot}/src" | ||
}, | ||
{ | ||
"name": "Attach", | ||
"type": "node", | ||
"request": "attach", | ||
"port": 9222, | ||
}, | ||
{ | ||
"name": "Karma-Test-Debug", | ||
"type": "chrome", | ||
"request": "attach", | ||
"address": "127.0.0.1", | ||
"port": 9333, | ||
"webRoot": "${workspaceRoot}", | ||
"pathMapping": { | ||
"/": "${workspaceRoot}/", | ||
"/base/": "${workspaceRoot}/" | ||
} | ||
}, | ||
{ | ||
"name": "Debug Main Process", | ||
"type": "node", | ||
"request": "launch", | ||
"cwd": "${workspaceFolder}", | ||
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron", | ||
"windows": { | ||
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd" | ||
}, | ||
"args" : [ | ||
".", | ||
"--open-dev-tools", | ||
"--disable-splash", | ||
"--localhost" | ||
], | ||
"outputCapture": "std" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"git.ignoreLimitWarning": true, | ||
"javascript.format.insertSpaceAfterConstructor": true, | ||
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": true, | ||
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": true, | ||
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": true, | ||
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": true, | ||
"javascript.format.insertSpaceBeforeFunctionParenthesis": true, | ||
"typescript.updateImportsOnFileMove.enabled": "always", | ||
"typescript.format.insertSpaceAfterConstructor": true, | ||
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": true, | ||
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": true, | ||
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": true, | ||
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": true, | ||
"typescript.format.insertSpaceBeforeFunctionParenthesis": true, | ||
"editor.detectIndentation": false, | ||
"files.exclude": { | ||
"**/.git": true, | ||
"**/.svn": true, | ||
"**/.hg": true, | ||
"**/CVS": true, | ||
"**/.DS_Store": true, | ||
"**/*.pyc": true | ||
}, | ||
"python.pythonPath": "/usr/bin/python", | ||
"python.testing.unittestArgs": [ | ||
"-v", | ||
"-s", | ||
"./python-client/", | ||
"-p", | ||
"test_*.py" | ||
], | ||
"python.testing.pytestEnabled": false, | ||
"python.testing.nosetestsEnabled": false, | ||
"python.testing.unittestEnabled": true, | ||
"editor.rulers": [ | ||
80,120 | ||
], | ||
"typescript.tsdk": "node_modules\\typescript\\lib", | ||
"javascript.validate.enable": true, | ||
"typescript.validate.enable": true, | ||
"html.format.wrapAttributes": "aligned-multiple", | ||
"html.format.wrapLineLength": 240 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Nodejs Base image | ||
FROM node:12 as build | ||
|
||
WORKDIR /app | ||
|
||
ENV PATH /app/node_modules/.bin:$PATH | ||
|
||
# install and app dependencies | ||
|
||
COPY package.json /app/package.json | ||
|
||
RUN npm install | ||
|
||
RUN npm install -g @angular/cli | ||
|
||
# add app | ||
COPY . /app | ||
|
||
EXPOSE 4200 49153 | ||
|
||
# start app | ||
CMD ng serve --host 0.0.0.0 --poll |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Use of the Truevision Designer is governed by the terms of the Truevision Designer End User License Agreement, which can be found at https://www.truevision.ai/eula |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Truevision Designer | ||
|
||
Truevision Designer is a 3D tool to design roads, intersections and environments for testing and validating autonomous vehicles and robots. | ||
|
||
From this repository you can build the Truevision Designer for Windows and Linux. | ||
|
||
[![Video](docs/img/welcome.jpg)](https://www.youtube.com/watch?v=7jej46ALVRE) | ||
|
||
|
||
## Features | ||
|
||
- Create and modify roads, lanes | ||
- Import/Export OpenDrive 1.4 | ||
- Export to CARLA simulator | ||
- Export 3D environment as GLTF or GLB file | ||
- Import and place 3d assets in the environment using various prop tools | ||
|
||
## Download | ||
|
||
Click here to download [] | ||
|
||
## Documentation | ||
|
||
Latest documentation can be found at [https://www.truevision.ai/designer/docs](https://www.truevision.ai/designer/docs) | ||
|
||
## Tutorials | ||
|
||
Latest tutorials and videos can be found at [https://www.youtube.com/channel/UCv4Gkf0Z0JyWdKQHakXpbAw/videos](https://www.youtube.com/channel/UCv4Gkf0Z0JyWdKQHakXpbAw/videos) | ||
|
||
## Recommended System | ||
- Intel i7 or above | ||
- 16 GB RAM | ||
- Ubuntu/Windows | ||
|
||
## License | ||
|
||
In brief, you are free to use, modify Truevision Designer for all non-commercial purposes only. Please read the license for more details. | ||
|
||
Your access to and use of Truevision Designer on GitHub is governed by the Truevision Designer End User License Agreement. If you don't agree to those terms, as amended from time to time, you are not permitted to access or use Truevision Designer. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
{ | ||
"$schema": "./node_modules/@angular/cli/lib/config/schema.json", | ||
"version": 1, | ||
"newProjectRoot": "projects", | ||
"projects": { | ||
"truevision": { | ||
"root": "", | ||
"sourceRoot": "src", | ||
"projectType": "application", | ||
"prefix": "app", | ||
"schematics": {}, | ||
"architect": { | ||
"build": { | ||
"builder": "@angular-devkit/build-angular:browser", | ||
"options": { | ||
"outputPath": "dist", | ||
"index": "src/index.html", | ||
"main": "src/main.ts", | ||
"polyfills": "src/polyfills.ts", | ||
"tsConfig": "src/tsconfig.app.json", | ||
"assets": [ | ||
"src/favicon.ico", | ||
"src/assets" | ||
], | ||
"styles": [ | ||
"src/assets/styles/app.scss", | ||
"src/styles.css" | ||
], | ||
"scripts": [], | ||
"es5BrowserSupport": true | ||
}, | ||
"configurations": { | ||
"production": { | ||
"fileReplacements": [ | ||
{ | ||
"replace": "src/environments/environment.ts", | ||
"with": "src/environments/environment.prod.ts" | ||
} | ||
], | ||
"optimization": true, | ||
"outputHashing": "all", | ||
"sourceMap": false, | ||
"extractCss": true, | ||
"namedChunks": false, | ||
"aot": true, | ||
"extractLicenses": true, | ||
"vendorChunk": false, | ||
"buildOptimizer": true, | ||
"budgets": [ | ||
{ | ||
"type": "initial", | ||
"maximumWarning": "5mb", | ||
"maximumError": "10mb" | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
"serve": { | ||
"builder": "@angular-devkit/build-angular:dev-server", | ||
"options": { | ||
"browserTarget": "truevision:build" | ||
}, | ||
"configurations": { | ||
"production": { | ||
"browserTarget": "truevision:build:production" | ||
} | ||
} | ||
}, | ||
"extract-i18n": { | ||
"builder": "@angular-devkit/build-angular:extract-i18n", | ||
"options": { | ||
"browserTarget": "truevision:build" | ||
} | ||
}, | ||
"test": { | ||
"builder": "@angular-devkit/build-angular:karma", | ||
"options": { | ||
"main": "src/test.ts", | ||
"polyfills": "src/polyfills.ts", | ||
"tsConfig": "src/tsconfig.spec.json", | ||
"karmaConfig": "src/karma.conf.js", | ||
"sourceMap": true, | ||
"styles": [ | ||
"src/assets/styles/app.scss" | ||
], | ||
"scripts": [], | ||
"assets": [ | ||
"src/favicon.ico", | ||
"src/assets" | ||
] | ||
} | ||
}, | ||
"lint": { | ||
"builder": "@angular-devkit/build-angular:tslint", | ||
"options": { | ||
"tsConfig": [ | ||
"src/tsconfig.app.json", | ||
"src/tsconfig.spec.json" | ||
], | ||
"exclude": [ | ||
"**/node_modules/**" | ||
] | ||
} | ||
} | ||
} | ||
}, | ||
"truevision-e2e": { | ||
"root": "e2e/", | ||
"projectType": "application", | ||
"prefix": "", | ||
"architect": { | ||
"e2e": { | ||
"builder": "@angular-devkit/build-angular:protractor", | ||
"options": { | ||
"protractorConfig": "e2e/protractor.conf.js", | ||
"devServerTarget": "truevision:serve" | ||
}, | ||
"configurations": { | ||
"production": { | ||
"devServerTarget": "truevision:serve:production" | ||
} | ||
} | ||
}, | ||
"lint": { | ||
"builder": "@angular-devkit/build-angular:tslint", | ||
"options": { | ||
"tsConfig": "e2e/tsconfig.e2e.json", | ||
"exclude": [ | ||
"**/node_modules/**" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"defaultProject": "truevision" | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.