Is there anyway in Java to set the resolution of a specific JFrame rather than changing the computer's resolution, meaning that if I have JFrame with a size of 100x100 can I make it so the top left point will be (0,0) and the bottom right will be (50,50)? These points being the coordinates inside the JFrame, for example when using Graphics (java.awt.Graphics).
Thank you.