Fixing broken links
This commit is contained in:
parent
3cf6849483
commit
3bd33cebfc
@ -1,7 +1,7 @@
|
|||||||
# Python Particle Sim
|
# Python Particle Sim
|
||||||
|
|
||||||
## Description
|
## Description
|
||||||
The general idea is that I wanted to be able to represent a particle simulation, that accounted for elastic collisions(momentum is conserved), as well as particle gravities. Every particle being represented has a gravitational affect on every other particle. I chose to do it this way because using vector and matrix math we should be able to properly compute everthing instead of having to make optimizing approximations.
|
The general idea is that I wanted to be able to represent a particle simulation, that accounted for elastic collisions(momentum is conserved), as well as particle gravities. Every particle being represented has a gravitational affect on every other particle. I chose to do it this way because using vector and matrix math we should be able to properly compute everything instead of having to make optimizing approximations.
|
||||||
|
|
||||||
Position, Accelerations, and Velocities can all be represented as mathematical vectors so that vector math can be used to speed up processing. From a single threaded approach this is overkill and there's lots of calculations that could be optimized out. But this method scales well to parallel computing
|
Position, Accelerations, and Velocities can all be represented as mathematical vectors so that vector math can be used to speed up processing. From a single threaded approach this is overkill and there's lots of calculations that could be optimized out. But this method scales well to parallel computing
|
||||||
|
|
||||||
@ -12,4 +12,4 @@ python python_particle_simulator.py
|
|||||||
```
|
```
|
||||||
|
|
||||||
This script will generate 100 particles to be used in the simulation and renders at about 20fps.
|
This script will generate 100 particles to be used in the simulation and renders at about 20fps.
|
||||||

|

|
||||||
|
@ -7,9 +7,9 @@
|
|||||||
<p align="center">
|
<p align="center">
|
||||||
Just a place to store some fun I had with messing around with CUDA! I used python for prototyping the math and then moved on to doing the same in C++.
|
Just a place to store some fun I had with messing around with CUDA! I used python for prototyping the math and then moved on to doing the same in C++.
|
||||||
<br />
|
<br />
|
||||||
<a href="Python_Stuff/README.md">Python</a>
|
<a href="Particle_Simulator/src/branch/main/Python_Stuff/">Python</a>
|
||||||
·
|
·
|
||||||
<a href="Cpp_Stuff/README.md">C++</a>
|
<a href="Particle_Simulator/src/branch/main/Cpp_Stuff">C++</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user