Theodore Watson
Theodore Watson
@dimitre - I'll have a look! I think I tried doing things without firmware.zip and ran into the same issues with `bcm_host.h`
@dimitre what if you add this line to the addon_config.mk for `linuxaarch64` ``` linuxaarch64: ADDON_PKG_CONFIG_LIBRARIES = opencv4 ADDON_LIBS_EXCLUDE = libs/opencv/% ADDON_INCLUDES_EXCLUDE = libs/opencv ADDON_INCLUDES_EXCLUDE += libs/opencv/% ADDON_LDFLAGS = -lblas -llapack
congrats @dimitre !! ooof - that was a gnarly one.
@dimitre I think we'll need to keep the macros in the core for now as so many addons rely on it. so lets have `OF_USE_LEGACY_MATH_MACROS` enabled for now ( once...
Thanks @dimitre - I think it's good that we update the examples too. I think probably it's just the PI vs `glm::pi()` thing to figure out ( and maybe that...
@dimitre oh yeah, I personally use `glm::pi()` but I can see that being a mouthful for new users. I wish they had a `glm::pi()` that defaulted to float. But yeah,...
oooh - I like that approach (edit) @artificiel how about we do: ``` namespace of::numbers { const float pi = glm::pi(); etc } ``` for now and then later we...
@dimitre - I think lets merge this. we can do a seperate PR for of::numbers::pi etc - which should be easy to do. @NickHardeman - it would be great to...
looks good to me!