-
- Downloads
feat: integratoren mit unit test
Showing
- babel.config.js 6 additions, 0 deletionsbabel.config.js
- jest.config.js 5 additions, 0 deletionsjest.config.js
- package-lock.json 11380 additions, 0 deletionspackage-lock.json
- package.json 12 additions, 4 deletionspackage.json
- src/simulation/Integrators.ts 23 additions, 0 deletionssrc/simulation/Integrators.ts
- tests/Integrators.test.ts 115 additions, 0 deletionstests/Integrators.test.ts
- tsconfig.json 0 additions, 20 deletionstsconfig.json
babel.config.js
0 → 100644
jest.config.js
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
{ | { | ||
"name": "computergrafik-03", | "name": "computergrafik-03", | ||
"type": "module", | "type": "commonjs", | ||
"private": true, | "private": true, | ||
"version": "0.0.0", | "version": "0.0.0", | ||
"scripts": { | "scripts": { | ||
"dev": "vite", | "dev": "vite", | ||
"build": "tsc && vite build", | "build": "tsc && vite build", | ||
"preview": "vite preview" | "preview": "vite preview", | ||
"test": "jest", | |||
"coverage": "jest --coverage" | |||
}, | }, | ||
"devDependencies": { | "devDependencies": { | ||
"@babel/core": "^7.18.6", | |||
"@babel/preset-env": "^7.18.6", | |||
"@babel/preset-typescript": "^7.18.6", | |||
"@types/dat.gui": "^0.7.7", | "@types/dat.gui": "^0.7.7", | ||
"@types/jest": "^28.1.3", | |||
"@types/three": "^0.139.0", | "@types/three": "^0.139.0", | ||
"tailwindcss": "^3.0.24", | "babel-jest": "^28.1.1", | ||
"typescript": "^4.5.4", | "jest": "^28.1.1", | ||
"typescript": "^4.7.4", | |||
"vite": "^2.9.5" | "vite": "^2.9.5" | ||
}, | }, | ||
"dependencies": { | "dependencies": { | ||
"dat.gui": "^0.7.9", | "dat.gui": "^0.7.9", | ||
"mathjs": "^10.6.4", | |||
"three": "^0.139.2" | "three": "^0.139.2" | ||
} | } | ||
} | } |
src/simulation/Integrators.ts
0 → 100644
tests/Integrators.test.ts
0 → 100644
tsconfig.json
deleted
100644 → 0
Please register or sign in to comment