PyGLM
PyGLM copied to clipboard
Trying to utilize glm.glm_typing
I would like to reuse the defined types of the glm libary in my own methods. Because I dont want to loose the already defined type casts. But I am unable to import it correctly. Did I do something wrong or is it just locked?
Example one:
Example two:
Hi there @Wasserwecken,
unfortunately, glm_typing
is not currently available as a sub-package of glm
.
You can however use the following code for the time being:
import importlib
glm_typing = importlib.import_module("glm-stubs.glm_typing")