blob: af2b2424ebd472bc46a686e2575148a45b0946d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Computation of Collisions using C++
So, I started this project using Python, but Python isn't fast enough any more.
Sooo... ... I'm using C++ from now on.
---
So, the plan is:
1. Running a Python-script (download_data.py) using C++ to fetch the data from the web.
2. Parsing the Data using C++.
3. Calculating the needed values.
4. Blender... .
5. Calculating Collisions.
---
Compile using:
$ g++ main.cpp
Run using:
$ ./a.out
|