The title is fairly self-explanatory, but I’ll reiterate: What would be a good variable name for a rectangle that describes an objects position and size.
EDIT – The object is a paddle for a Pong-like game, and there is already a rectangle named ‘bounds’ to restrict where the paddle can be moved to.
I ended up going with ‘bounds’ for the paddles position and size, and ‘movableArea’ to restricted where the paddle can be moved.
If it’s a paddle, then why not paddleBound? That’s not rocket science, it describes the object and its property and should be enough to distinguish it from anything else, except maybe the other paddle (then you can just use paddel1Bound or userPaddleBound for further distinction).