https://github.com/bend-n/vecto
vec2
https://github.com/bend-n/vecto
Last synced: about 1 month ago
JSON representation
vec2
- Host: GitHub
- URL: https://github.com/bend-n/vecto
- Owner: bend-n
- License: mit
- Created: 2023-10-15T01:21:00.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-10-15T09:45:45.000Z (over 1 year ago)
- Last Synced: 2025-02-28T07:35:01.633Z (about 2 months ago)
- Language: Rust
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vecto
smol rust lib for `Vector2`.
- is generic over floats
- has methods
- overloads operators## usage
```rust
use vecto::Vec2;
let v = Vec2::splat(5.0);
```