Library implementing fixed-length Vectors meant for representing dimensional values. Tested heavily to ensure safety during use.
```bash $ cd fixed-vectors $ cargo test ...
ok
as the test result.```
Voxel Struct
Example below shows how a
Voxel
might be represented as a struct,
using a Vector3.
```rust use fixed_vectors::Vector3;
pub struct Voxel {
/// Represents the positional value in 3D Space of the [Voxel
]
pub position: Vector3