Hello @nico23 ,
I see texture mappers to be like a view object, basically what camera would see.
Therefore, your texture mapper could be at coordinate 0;0 but the image inside your texture mapper could be at position 20;75.
Then if you scale your image, the image will scale inside the view. If your image becomes too big, you won't be able to see all of it. Here is an example of that happening :

When you do getX and getY, you do something like textureMapper1.getX(), which give the position of the texture mapper itself, not the position of the image inside your texture mapper. Same thing for height and width.
So scaling your image won't affect the coordinate of the texture mapper.
Now, when scaling the image inside the texture mapper, by default, the image is centered :

So when scaling an image inside a texture mapper :
- getX and getY don't change
- getWidth and getHeight don't change
- the image is always centered
setSize() is just a virtual function for the visualization?
SetSize doesn't exist, but setScale is indeed just used for visualization. it is setWidth and setHeight that actually change the size of your texture mapper (and not the image inside of it).
If this comment answers your question, I invite you to select it as "best answer".
Regards,