#includeIn this example, we create a 3D vector using the `Vector3f` class with initial values `(2, 0, 2)`. We then normalize this vector by calling the `normalize` function on the `vec` object. After normalization, the magnitude of `vec` will be `1` and its direction will be along the line `(1, 0, 1)`. The `Vector3f` class is part of the `Eigen` library, which is a linear algebra C++ library.int main() { Vector3f vec(2.0f, 0.0f, 2.0f); vec.normalize(); // At this point, vec will have magnitude 1 and direction (1, 0, 1). return 0; }