Brandon George

Results 14 comments of Brandon George

Hey @Sygmei is this still an open issue? At first it seemed like it was getting resolved, but then the PR seemed to have stalled. With that, do let me...

Hey @Sygmei there is already a flip method for sprite. It is not using an enum, as discussed in pr #421 however it uses boolean values for flip horizontal and...

Just to clarify, is the goal then to add to the System/Window.hpp & .cpp logic similar to what is found here in Engine.hpp: https://github.com/ObEngine/ObEngine/blob/6ad69858c82733b798881cd9fe4b0a90e2af52f2/include/Core/Engine/Engine.hpp#L21 Specifically adding structs that represent the...

Or adding to the scope contained here, for "Window" ? https://github.com/ObEngine/ObEngine/tree/v0.5/include/Core/Bindings/obe/events

Adding this commit for review, related to adding events.: https://github.com/ObEngine/ObEngine/commit/73d6b44d07d1055b8a3b1dd1c48fc76f75d099fc

Alright @Sygmei before I go any further with the Window Events, have a look at what I have committed for the following branch: https://github.com/ObEngine/ObEngine/tree/add-window-events Review the Window.hpp / Window.cpp... For...

Is this still a need? I am looking for a good project to contribute. C/C++ and Python are the two languages I am actually writing a series on for interop...

Ok great... I will fork the repo and get started this weekend. I will message you if I have any questions. We are taking about adding support for this: https://numpy.org/doc/stable/reference/generated/numpy.linalg.eigvals.html

Ok so I have spent some time with the implementation of what numpy.linalg.eigvals(x) really is doing. The actual implementation for calculating the eigen values of a general matrix (or numpy.array-ish)...

You can see the actual umath_linalg.cpp that numpy.linalg.eigvals(x) calls here: https://github.com/numpy/numpy/blob/8cec82012694571156e8d7696307c848a7603b4e/numpy/linalg/umath_linalg.cpp starting line: 2379 eig_wrapper(...). With this, line 2403 init_geev(...) call. I have a working example of LAPACKE_cgeev(...) just so...