UnitMain.dfm 868 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. object FormMain: TFormMain
  2. Left = 0
  3. Top = 0
  4. Caption = 'Spherical projection example'
  5. ClientHeight = 719
  6. ClientWidth = 1033
  7. Color = clBtnFace
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -12
  11. Font.Name = 'Segoe UI'
  12. Font.Style = []
  13. WindowState = wsMaximized
  14. OnResize = FormResize
  15. OnShow = FormShow
  16. TextHeight = 15
  17. object PaintBox32: TPaintBox32
  18. Left = 0
  19. Top = 0
  20. Width = 1033
  21. Height = 719
  22. Align = alClient
  23. TabOrder = 0
  24. TabStop = True
  25. OnDblClick = PaintBox32DblClick
  26. OnMouseDown = PaintBox32MouseDown
  27. OnMouseMove = PaintBox32MouseMove
  28. OnMouseUp = PaintBox32MouseUp
  29. OnMouseWheel = PaintBox32MouseWheel
  30. OnPaintBuffer = PaintBox32PaintBuffer
  31. end
  32. object TimerRotate: TTimer
  33. Interval = 200
  34. OnTimer = TimerRotateTimer
  35. Left = 492
  36. Top = 244
  37. end
  38. end