kmpape
kmpape
Addendum: I found this hacky way after installing `wmctrl` on Ubuntu: ``` window_id = pygame.display.get_wm_info()["window"] subprocess.Popen(["wmctrl", "-i", "-r", str(window_id), "-b", "add,above"]) ``` This seems to work, but is there a...
I apologise for my late answer, I was away. Thank you very much for your helpful comments. We are not using Windows. I will look in to setting up a...
Sorry, my bad. I think that it should be ``` x_mother = self.position[0] - self.division_sign * self.length/2 * np.cos(self.angle - np.pi/2) y_mother = self.position[1] + self.division_sign * self.length/2 * np.sin(self.angle...
Thank you very much for this.