point, which is easily enough done with a `struct` that has a position and a velocity. Going from one point to many can be as simple as using a `std::vector` of these `Points`. To update each, we can use a range-based for loop and increase a point's position based on its velocity
4x Code Performance with SIMD