henri-gasc

Results 14 comments of henri-gasc

> Is there any possible consequence to changing the order of the include files here? There shouldn't be any, I just think it's more readable if the headers are separated...

> If you build with cmake and use `findpackage(OpenEXR)`, you get both folders, so this change only affects people using their own system to include OpenEXR and Imath. If those...

Then, why not put this behind a flag (like --follow-symlinks) and only if no package was found ? Something along the lines of: - search packages as they are in...

I did this for two reasons: - The first, to have a more consistent behavior with `equery belongs` - The second, because I did not understand why /usr/bin/ar was not...

The problem may come from the way numpy (Pyrr) and PyGLM handle matrices and their indices ```python import glm, numpy a = numpy.eye(4) b = glm.mat4() (a == b).all() #...

Pyrr is, for lack of a better word, a mess. `pyrr.Matrix44.from_eulers(...)` and `pyrr.Matrix44.from_quaternion(pyrr.Quaternion.from_eulers(...)` does not give out the same matrix. That is because `Quaternion.from_eulers` output something strange. ```python roll, pitch,...

@einarf I finaly managed to fix the issue concerning the examples, and unlike what I said in my previous message, it does not seems like we need to update the...

Before I do it and potentially waste my time, should/can I fix most mypy errors and warnings ?

> this is because statically, there's no way for (based)pyright to know this. there's no way to tell the type checker that an exception definitely won't be raised, so it...