about separate view

I’d like to make a window using MFC to simulate the environment like 3D Studio Max, i.e., the 4 different views shown on the screen representing an object.

How can I do it?

Thanks so much.

Hi,

I think you would be better off with MDI child windows for those views. That way you don’t need to program all the view handling stuff (resizing, tiling etc.) yourself. In addition the users would have a familiar and well-thought interface to manipulate the views.

If that’s not your thing, basically you use glViewPort and glScissor to limit drawing to a certain region.

-Ilkka