fdMandelbrot.dfm 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. object FormMandelbrot: TFormMandelbrot
  2. Left = 237
  3. Top = 172
  4. Caption = 'Mandelbrot'
  5. ClientHeight = 497
  6. ClientWidth = 639
  7. Color = clBtnFace
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -10
  11. Font.Name = 'MS Sans Serif'
  12. Font.Style = []
  13. Position = poScreenCenter
  14. OnCreate = FormCreate
  15. OnMouseWheel = FormMouseWheel
  16. TextHeight = 13
  17. object Viewer: TGLSceneViewer
  18. Left = 0
  19. Top = 0
  20. Width = 639
  21. Height = 497
  22. Camera = GLCamera
  23. Buffer.BackgroundColor = 16492697
  24. FieldOfView = 157.247146606445300000
  25. PenAsTouch = False
  26. Align = alClient
  27. TabOrder = 0
  28. end
  29. object Scene: TGLScene
  30. Left = 16
  31. Top = 16
  32. object Mandelbrot: TGLDirectOpenGL
  33. UseBuildList = False
  34. OnRender = MandelbrotRender
  35. Blend = False
  36. end
  37. object GLHUDText: TGLHUDText
  38. Position.Coordinates = {0000204100002041000000000000803F}
  39. BitmapFont = GLWindowsBitmapFont
  40. Rotation = 0.000000000000000000
  41. end
  42. object GLCamera: TGLCamera
  43. DepthOfView = 100.000000000000000000
  44. FocalLength = 50.000000000000000000
  45. TargetObject = Mandelbrot
  46. end
  47. end
  48. object Timer1: TTimer
  49. Interval = 100
  50. OnTimer = Timer1Timer
  51. Left = 344
  52. Top = 16
  53. end
  54. object GLCadencer: TGLCadencer
  55. Scene = Scene
  56. OnProgress = GLCadencerProgress
  57. Left = 96
  58. Top = 16
  59. end
  60. object GLMatLib: TGLMaterialLibrary
  61. Materials = <
  62. item
  63. Name = 'LibMaterial'
  64. Tag = 0
  65. Material.Texture.Disabled = False
  66. end>
  67. Left = 24
  68. Top = 72
  69. end
  70. object OpenDialog1: TOpenDialog
  71. DefaultExt = 'bmp'
  72. Filter =
  73. 'All graphic files|*.bmp; *.jpg; *.jpeg; *.tga|JPEG|*.jpg; *.jpeg' +
  74. '|TGA|*.tga|Bitmaps|*.bmp'
  75. Title = 'Open Bitmap'
  76. Left = 472
  77. Top = 16
  78. end
  79. object GLWindowsBitmapFont: TGLWindowsBitmapFont
  80. Font.Charset = RUSSIAN_CHARSET
  81. Font.Color = clWhite
  82. Font.Height = -11
  83. Font.Name = 'Verdana'
  84. Font.Style = []
  85. Left = 192
  86. Top = 16
  87. end
  88. end