I saw
this post
and added a print label.get_position()
. It looks like this command returns the 2D-coordinates of the label, let's call it (u,v)-coordinates as marked green in the picture below.
Now my question:
Is there a way to get these (u,v)-coordinates of a certain 3D-point? How?
Edit: For example: I have a 3D-point with the (x,y,z)-coordinates (1,1,1). I want matplotlib to return me the (u,v)-coordinates of this point when I rotate the view around. In my example: In the first case, matplotlib should return me (4,3), in the second case (6,4). Hope this is clear enough now =)