Vector2d Library

The following library is created for handling the vector for the animation library where we put our engine. The libray has several modules and support

Changelog

Notes

Features

Welcome message

```sh cargo run --quiet

or

cargo run -j 10 --quiet ```

Testing Module

sh cargo test - Sometimes we want to see the results output of some selected variables by the specified test. To see the printed values during cargo test, you can use the --nocapture flag. This flag prevents the test framework from capturing the output, allowing the printed values to be displayed in the console.

```sh cargo test -- --nocapture

Or

cargo test -j 8 -- --nocapture ```