7 releases

0.3.8 Jul 18, 2022
0.3.6 Jul 14, 2022
0.3.1 Jun 13, 2022
0.2.0 May 2, 2022
0.1.0 Apr 28, 2022

#63 in #general-purpose

Download history 165/week @ 2024-07-26 41/week @ 2024-08-02 191/week @ 2024-08-09 305/week @ 2024-08-16 415/week @ 2024-08-23 565/week @ 2024-08-30 339/week @ 2024-09-06 89/week @ 2024-09-13 28/week @ 2024-09-20 156/week @ 2024-09-27 34/week @ 2024-10-04 208/week @ 2024-10-11 10/week @ 2024-10-18 177/week @ 2024-10-25 543/week @ 2024-11-01 532/week @ 2024-11-08

1,322 downloads per month
Used in 2 crates (via wplot)

MIT license

140KB
3.5K SLoC

Module :: wmath experimental rust-status docs.rs Open in Gitpod

discord

Math library aggregating several math modules.

Sample

use wmath::adapter::prelude::*;

let x2_original = wmath::X2::< u8 >( 1, 3 );
println!( "{:?}", x2_original );
/* log : X2(1, 3) */
let x2_to_array = x2_original.clone_as_array();
println!( "{:?}", x2_to_array );
/* log : [1, 3] */

To add to your project

cargo add wmath

Try out from the repository

git clone https://github.com/Wandalen/wMath
cd wMath
cd sample/rust/wmath_trivial
cargo run

Dependencies

~3–17MB
~268K SLoC