Unity.mathx icon indicating copy to clipboard operation
Unity.mathx copied to clipboard

An Extension Library for Unity.Mathematics - Extension Methods, New Syntax, Optimized Functions, and more !

Results 10 Unity.mathx issues
Sort by recently updated
recently updated
newest added

See implementation such as : https://github.com/keijiro/Skinner/blob/4f1b8656985d89c92f31d20e93ca1b1446c4640e/Assets/Klak/Math/XXHash.cs

Setup Github Actions : https://blog.taranissoftware.com/document-your-net-code-with-docfx-and-github-actions

Simplex, Perlin, Whorley, Layered, Voronoi

Implement easings like nebukam's package : https://github.com/Nebukam/com.nebukam.easing

```cs [MethodImpl(IL)] public static float4 bitwave(float4 x) => floor(math.fmod(x, 2)); [MethodImpl(IL)] public static float4 bitwave2(float4 x) => (int4)x & 1; ```

enhancement

Followed instructions here : https://github.com/NormandErwan/DocFxForUnity documentation doesn't seem to compile properly, no documentation pages are generated.

documentation
help wanted