Math Library for my personal Rust Projects
This is not a general-purpose math library. It is specifically written for my purposes only.
Feel free to use it in your projects if it fits your needs, don't even worry about attribution :)
```rust
use fmath::{ clamp, max, min,
Angle, degreesoverflow, degreestoradians, radiansto_degrees,
u8addoverflowmaxclamp, u8muloverflowmaxclamp, u8suboverflowminclamp,
vector::, matrix::{ Matrix4x4, Matrix4x4_consts::, }, color::, hexadecimal:: };
// General let x = 5.0; let x_clamped = clamp( x, 0.0, 1.0 ); // 1.0
let numberlist:[f32;5] = [ 5.0, 7.0, 1.0, 80.0, -2.0 ]; let maxfromlist = max( &numberlist ); // 80.0 let minfromlist = min( &number_list ); // -2.0
let anothernumberlist:[u32;4] = [ 2, 3, 4, 1 ]; let maxfromanotherlist = max( &anothernumberlist ); // 4 let minfromanotherlist = min( &anothernumberlist ); // 1
let mut angle = 730.2; angle = degrees_overflow( angle ); // 10.2
let angleradians = degreestoradians( angle ); // 0.1780236 let angledegrees = radianstodegrees(angle_radians); // back to degrees (10.2)
let mut maxexample1:u8 = 254; maxexample1 = u8addoverflowmaxclamp( maxexample1, 2 ); // 255
let mut maxexample2:u8 = 120; maxexample2 = u8muloverflowmaxclamp( maxexample2, 4 ); // 255
let mut minexample1:u8 = 0; minexample1 = u8suboverflowminclamp( minexample1, 2 ); // 0
let hexencodeexample = encodehex(&[0, 255, 0]); // 00ff00
let hexdecodeexample = decodehex_str("654dbd").unwrap(); // Vec
// Vector math let v1 = Vector2::new( 1.0, 0.0 ); let v2 = Vector2::new( 0.0, 0.0 ); let v3 = v1 + v2; // ( 1.0, 1.0 )
let v1_mag = v1.magnitude(); // 1.0
// Matrix math let m1 = MATRIX4X4_ZERO.clone(); // creates empty Matrix array
let translate = Vector3::new( 0.0, 1.0, 0.0 ); let rotate = Vector3::new( 0.0, 0.0, 90.0 ); let scale = Vector3::new( 0.5, 0.5, 0.5 );
// creates Translate-Rotate-Scale Matrix from Vector3's let m2 = Matrix4x4::newtrs( translate.asarray(), // accepts [f32;3] only rotate.asarray(), // accepts [f32;3] only scale.asarray(), // accepts [f32;3] only Angle::Degrees // sets angle type to degrees );
let point1 = Vector3::new( 1.0, 2.0, 3.0 ); // apply transformation Matrix to Vector3 let point1transformed:Vector3 = Matrix4x4::mulvector3( &m2, &point1 );
let point2 = Vector4::new( 1.0, 2.0, 3.0, 1.0 ); // apply transformation Matrix to Vector4 let point2transformed:Vector4 = Matrix4x4::mulvector4( &m2, &point2 );
// Colors let mut rgb = ColorRGB::new( 0.25, 0.25, 0.25 ); // creates RGB with given f32's let rgb8 = ColorRGB8::new( 160, 255, 0 ); // creates RGB8 with given u8's let rgba = ColorRGBA::from_hex( "994cd4" ); // creates RGBA from hex, sets alpha to 1.0
rgb = rgb8.into(); // convert RGB8 to RGB rgb[0] = 0.25; // address each component with index
// creates HSV with given hue, saturation and value f32's let mut hsv = ColorHSV::new( 25.0, 0.5, 0.9 );
rgb = hsv.as_rgb(); // convert HSV to RGB
hsv = rgb.into(); // convert RGB8 to HSV
// All types (except Angle enum) implement fmt::Display println!("rgb: {}", rgb); // ColorRGB: {r} {g} {b}
```
in Cargo.toml file...
rust
[dependencies]
fmath = "*current-version*"
build documentation with cargo doc in the command line
cargo doc