| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | Fix math/fixed floor/ceil/round | Ed Yu | 2024-01-08 | 1 | -5/+7 | |
| | | | ||||||
| * | | Fix linalg shadowing error | Lucas Perlind | 2024-01-09 | 1 | -3/+3 | |
| |/ | ||||||
| * | Remove `distinct` from the specific types | gingerBill | 2024-01-05 | 1 | -64/+64 | |
| | | ||||||
| * | Enforce naming the parameters with `builtin.quaternion` to reduce confusion | gingerBill | 2024-01-05 | 1 | -1/+1 | |
| | | ||||||
| * | Fix missing clamp in core:math/big random. | Jeroen van Rijn | 2023-11-27 | 1 | -1/+1 | |
| | | ||||||
| * | Merge pull request #2918 from flysand7/math-doc | Jeroen van Rijn | 2023-11-24 | 1 | -11/+11 | |
| |\ | | | | | [math]: Fix the doc comments on `F64_*` constants | |||||
| | * | [math]: Fix the doc comments on F64_* constants | flysand7 | 2023-11-04 | 1 | -11/+11 | |
| | | | ||||||
| * | | Make pow2_f{16,32,64} contextless for consistency. | Jeroen van Rijn | 2023-11-11 | 1 | -3/+6 | |
| | | | ||||||
| * | | [core]: Remove `do` keyword from the core library | flysand7 | 2023-11-11 | 1 | -1/+3 | |
| | | | ||||||
| * | | Work around LLVM idiocy. | Jeroen van Rijn | 2023-11-04 | 1 | -2/+3 | |
| | | | ||||||
| * | | Add math.pow2_f{16,32,64}, fast floating point 2^x where x is an integer. | Jeroen van Rijn | 2023-11-04 | 1 | -1/+48 | |
| |/ | ||||||
| * | Merge branch 'master' into new-sys-unix | gingerBill | 2023-10-31 | 1 | -0/+14 | |
| |\ | ||||||
| | * | Replace Math.random with crypto.getRandomValues for _system_number | Damian Tarnawski | 2023-10-27 | 1 | -3/+5 | |
| | | | ||||||
| | * | Rename rand to rand_f64 | Damian Tarnawski | 2023-10-27 | 1 | -2/+3 | |
| | | | ||||||
| | * | Add system_random and random_bytes for js target | Damian Tarnawski | 2023-10-27 | 1 | -0/+11 | |
| | | | ||||||
| * | | Implement new sys/unix package | flysand7 | 2023-10-27 | 1 | -17/+18 | |
| |/ | ||||||
| * | Partial pseudo-revert | gingerBill | 2023-10-02 | 1 | -4/+8 | |
| | | ||||||
| * | Minor cleanups to the core library | gingerBill | 2023-09-30 | 2 | -2/+2 | |
| | | ||||||
| * | Use `or_break` and `or_continue` where appropriate in the core library | gingerBill | 2023-09-30 | 1 | -8/+4 | |
| | | ||||||
| * | Rename bitwise operations to `bit_or` etc | gingerBill | 2023-09-28 | 1 | -8/+8 | |
| | | ||||||
| * | Fixed up missing output for rand examples | Lucas Perlind | 2023-09-27 | 1 | -1/+103 | |
| | | ||||||
| * | Better guarantee boundaries of floating point rand | Lucas Perlind | 2023-08-18 | 1 | -15/+30 | |
| | | ||||||
| * | Update rand documentation about floats | Lucas Perlind | 2023-08-16 | 1 | -8/+13 | |
| | | ||||||
| * | Fix `_random_u64` | gingerBill | 2023-08-15 | 1 | -3/+4 | |
| | | ||||||
| * | Change algorithm to work on 64-bit integers rather than 32-bit integers ↵ | gingerBill | 2023-08-15 | 4 | -131/+28 | |
| | | | | | internally | |||||
| * | Fix range comment from `(0, n]` to `[0, n)` | gingerBill | 2023-08-15 | 1 | -8/+8 | |
| | | ||||||
| * | Merge pull request #2661 from Beefster09/fixed-f64-conversion | gingerBill | 2023-08-07 | 1 | -5/+7 | |
| |\ | | | | | Fix conversions between fixed point numbers and f64 | |||||
| | * | Update fixed.odin | Justin Snyder | 2023-07-15 | 1 | -5/+7 | |
| | | | ||||||
| * | | Keep -vet happy | gingerBill | 2023-07-31 | 1 | -12/+12 | |
| |/ | ||||||
| * | Remove math usage of raw LLVM intrinsic prototypes | gingerBill | 2023-07-07 | 1 | -16/+82 | |
| | | ||||||
| * | Begin work on `core:math/cmplx` | gingerBill | 2023-06-28 | 3 | -0/+1195 | |
| | | | | | `complex*` types only at the moment, `quaternion*` types coming later | |||||
| * | Add `math.sincos` | gingerBill | 2023-06-28 | 1 | -0/+308 | |
| | | ||||||
| * | Actually add math.hypot | gingerBill | 2023-06-28 | 1 | -33/+39 | |
| | | ||||||
| * | Add `math.hypot` | gingerBill | 2023-06-28 | 1 | -0/+68 | |
| | | ||||||
| * | Replace `x in &y` Use `&v in y` syntax through core & vendor for ↵ | gingerBill | 2023-06-26 | 4 | -7/+7 | |
| | | | | | `switch`/`for` statements | |||||
| * | Use positional and named arguments within the core library | gingerBill | 2023-06-21 | 1 | -1/+1 | |
| | | ||||||
| * | Document core:math/rand and add 'possible output' | Lucas Perlind | 2023-05-31 | 1 | -23/+635 | |
| | | | | | | | Possible output allows us to just type check a test and have some sort of output field in the docs but not actually verify it matches stdout | |||||
| * | Add `@(require_results)` to `core:math/ease` | gingerBill | 2023-05-22 | 1 | -41/+76 | |
| | | ||||||
| * | Add `@(require_results)` and `contextless` to procedures in `core:math/bits` | gingerBill | 2023-05-22 | 1 | -84/+161 | |
| | | ||||||
| * | Add `@(require_results)` to `core:math/fixed` | gingerBill | 2023-05-22 | 1 | -0/+11 | |
| | | ||||||
| * | Add `@(require_results)` to `core:math/linalg`'s `glsl` and `hlsl` packages | gingerBill | 2023-05-22 | 4 | -1265/+1307 | |
| | | ||||||
| * | Add "contextless" to `core:math/linalg` procedures | gingerBill | 2023-05-22 | 7 | -620/+620 | |
| | | ||||||
| * | Add `@(require_results)` `core:math/linalg` procedures | gingerBill | 2023-05-22 | 7 | -24/+638 | |
| | | ||||||
| * | Add `@(require_results)` to `core:math/noise` | gingerBill | 2023-05-22 | 1 | -0/+9 | |
| | | ||||||
| * | Add `@(require_results)` to `core:math/rand` | gingerBill | 2023-05-22 | 7 | -7/+49 | |
| | | ||||||
| * | Add @(require_results) to `core:math` procedures | gingerBill | 2023-05-22 | 7 | -335/+488 | |
| | | ||||||
| * | Fix #2545 - Typo in vec4 lerping procedures | KyleRhoads45 | 2023-05-18 | 1 | -2/+2 | |
| | | ||||||
| * | linalg/extended radians and degrees fixed | Jesse Stiller | 2023-04-27 | 1 | -4/+5 | |
| | | | | | Renamed them to `to_degrees` and `to_radians` to match the same scalar functions in math--plus it helps clarify exactly what they do. And fixed a bug where the array overloads weren't being indexed. | |||||
| * | Add parentheses around `or_return` uses in an unary expression | gingerBill | 2023-04-27 | 1 | -6/+6 | |
| | | ||||||
| * | Fix #2389 | Mostafa Saad | 2023-03-17 | 1 | -4/+4 | |
| | | ||||||