Zuzu-Typ

Results 36 comments of Zuzu-Typ

The reason why `min` and `max` are slow in this context is because both operations currently only support `list`, `tuple` and other iterable types. Therefore, `glm.array` is simply interpreted as...

Here's a page that might help you understand how to use Quaternions for rotation: http://www.opengl-tutorial.org/intermediate-tutorials/tutorial-17-quaternions/ Basically, you create a quaternion from an axis and angle (e.g. using glm.angleAxis) and you...

Hi there (: > I would like to submit PyGLM as a Pyodide package. That would be great! Thank you for the help! > I can make a PR with...

I added the static keyword to any applicable symbol. With the changes in #225, the following symbols remain from the table you've provided: ``` _ZNKSt3__24hashIN3glm3matILi2ELi2EdLNS1_9qualifierE0EEEEclERKS4_ _ZN13PyGLMTypeInfo4initEiP7_object _ZNKSt3__24hashIN3glm3vecILi3EdLNS1_9qualifierE0EEEEclERKS4_ _ZNKSt3__24hashIN3glm3vecILi4EdLNS1_9qualifierE0EEEEclERKS4_ _ZNKSt3__24hashIN3glm3matILi3ELi2EdLNS1_9qualifierE0EEEEclERKS4_ _ZNKSt3__24hashIN3glm3matILi4ELi2EdLNS1_9qualifierE0EEEEclERKS4_...

Oops, didn't mean to close this

Hi there @Scylla2020 , A possible source of the problem might be the audio file you are using. Positional audio playback only works with files that only have one audio...

Hi there @IGalat I don't currently have the time to test this, but it sounds like cursor acceleration is at work here. You could try turning it off in the...

Hi @buestad, Unfortunately there isn't any straightforward way to do this. Although there is an XInput function that allows you to get vendor information provided by Microsoft, it's undocumented and...

Hey there (: thank you very much for your work and the detailed information you gave alongside with it ^^ I've tried it out, but it doesn't seem to work...

Hi there (: Unfortunately, XInput-Python does not offer this as a built-in feature, but it's still fairly simple to implement. I've assembled two examples of how this can be done...