Tips - Maintain constant Field of View when resizing the form
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;