1
Python / Re: Question about the Python binding
« on: November 09, 2013, 12:32:45 pm »Hi,
Why are people so obsessed about performances :p You won't notice any difference. Just expect your program to run slightly slower but that's just because Python is interpreted while C++ is compiled. If you write stuff that takes time to compute, it will likely run slow in both C++ and Python because SFML just sends stuff to the GPU which executes its tasks independently of the languages you use.
The official Python installers install a Python version compiled with these compilers so we need to use the same one. It's advised.. or you may encounter mysterious bugs/crashes.
Good luck
Thanks for the information and the reply. As for why are people obsessed about performance. I have an excuse I have been developing for micro controllers for the last 2 years as a hobby. I would still not say I am obsessed I just know from experience that Python can really bog down computationally well before a solid C/C++ algorithm does. I just wanted to make sure I was not going to run into any other potential slow downs. I.E. Significant Python -> C call overhead. I should have specified better in my post besides just saying I am unfamiliar with Cython.
Either way thanks for the reply I will continue to look into this.