Andi Anderson

Results 16 comments of Andi Anderson

I had similar thoughts while watching that talk. 1) I always considered end() being one past the end a naming smell. Testing against end() to see if find() has a...

*sigh* I was just trying to make the point that a random person would guess (with odds>80%) that - given a list - begin and end refer to the first...

they are 'convertible' when they have this signature: `auto my_lambda = [](int idx, void*) { ... }` but it confused me as well, and could be improved imo - see...

What would be your use-case? your make lambdas which capture your data and return the transformed data you want to plot? or captureless lambdas taking a data* and index? or...

You are right, it is a very general solution, but it confused me at first, and I still don't like it for some reasons: 1. it is not easy/intuitive how...

the getter type could just be an additional template parameter, but the underlying issue is that the ImPlotXYZ templates need to be instantiated (see code CALL_INSTANTIATE_FOR_NUMERIC_TYPES) I'm still trying to...

I've prototyped the real deal. With type erasure and a bunch of different getters. Unfortunately this repo does not seem to have much interest

Yeah, I realized that I basically re-invented std::function - but in a quirky way to support the in-built implot getters. I say quirky because there's always two getters mangled up...

Let's take the 30000ft view. **What a user expects from a plot library is an interface that let's him conveniently pass values to a plot.** Certainly worlds collide here technically....