To maintain the same field of view when your form resizes simply set the GLSceneViewer property FieldOfView in the Forms resize event.
procedure TForm1.FormResize(Sender: TObject);
begin
GLSceneViewer1.FieldOfView := 160; // example 160 degree view
end;
Comments (0)
You don't have permission to comment on this page.