We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I'm creating a square grid in 3D with a slight x-axis tilt so the foreground edge is wider than the back edge. When created with a translation putting its midpoint at the window's width/2 point, the figure is symmetrical:

But when created with a smaller x-direction offset (to leave room on the right for future controlP5 controls) it looks like this:

I'm sure this is a perspective issue. But I'm danged if I know how to fix it. Hints anyone?
Answers
Obviously I also don't know how to annotate the "insert image" URL so my saved images get uploaded with the text. I don't see the proper markup in FAQs either. More help?
Image upload: there are two different icons in the little command bar, try both
It looks offset because it is moved left. There is no way to say let perspective center be at 400 or so
Work around: do the 3D into a PImage and display it at -200, 0
Chrisir: Hey, you're right. The leftmost icon is 'file upload' which let me pick the image file I intended to show yesterday. Thus:
The "off center" image is this:
Chrisir #2: Thanks, I'll try your suggestion on how to offset the image from center.
I am sorry, I guess I meant PGraphics, not PImage
https://www.processing.org/reference/PGraphics.html
Check this:
https://processing.org/reference/camera_.html
Probably this could work for you: Set the center of your peak to be the center of the camera's center parameter.
Kf
If you are trying to create offset P3D content and a control area or HUD then check out these discussions with examples:
The key to the layout is to create a P2D sketch (it needs to be OpenGL at the top level), then create a P3D PGraphics for your 3D layout element, then create a JAVA2D PGraphics for your controls layout element.
looking at kfrajers idea: it's nice.
could work.
even move both center and position to the left?
step 1
step 2
not really....
This was my idea. You get the asymmetry due to the projection of the camera. You could just draw the figure at 0,0 and you do not need to do any of these camera adjustments.
Kf
to be honest, I don't see how this would help the OP:
He wants an offset to the left without changing the perspective
Many thanks to all for these responses. It will take a while to read, understand and apply.
While searching the forums I found these potentially useful tips from codeanticode in November 2013 (Answers #3848 and #3915). The idea (as I understand it) is to do the P3D work offscreen then embed the image into the main work window which is created as P2D. It is the latter area where one would put controlP5 GUI elements.
This brings back memories of a long-ago project (I am a retired geezer-programmer) where off-screen graphics memory was used to build successive images subsequently "bit-blitted" into visible graphics addresses.
yeah, I mentioned PGraphics above
And now I see that the references given by jeremydouglass are later comments along the same lines as those earlier by codeanticode. Thanks again all.
@bob97086 -- glad you are on the right track. Yes, the example code in my first link (above) should give you the configuration of PGraphics elements that you want if you use that kind of approach.