windows-numerics 0.100.0

Windows numeric types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![doc = include_str!("../readme.md")]
#![cfg_attr(all(not(feature = "std")), no_std)]
#![forbid(unsafe_code)]

mod bindings;
pub use bindings::*;

mod matrix3x2;
mod matrix4x4;
mod vector2;
mod vector3;
mod vector4;