Opioid
Results
13
comments of
Opioid
Ah, cool. My lisp is very bad but I might give it a try some time.
I often interpolate between vectors with a scalar value. In your opinion, would it makes sense to handle this use case here as well?
No, I mean more or less like this: ``` fn lerp(a: anytype, b: anytype, t: f32) @TypeOf(a, b) { switch (@typeInfo(@TypeOf(a))) { .Float => { const u = 1.0 -...