2
0

Unit1.dfm 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. object Form1: TForm1
  2. Left = 0
  3. Top = 0
  4. Caption = 'Mesh Explosion'
  5. ClientHeight = 421
  6. ClientWidth = 588
  7. Color = clBtnFace
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -11
  11. Font.Name = 'Tahoma'
  12. Font.Style = []
  13. OldCreateOrder = False
  14. OnCreate = FormCreate
  15. PixelsPerInch = 96
  16. TextHeight = 13
  17. object Viewer: TGLSceneViewer
  18. Left = 0
  19. Top = 0
  20. Width = 588
  21. Height = 324
  22. Camera = Camera1
  23. Buffer.BackgroundColor = clBackground
  24. FieldOfView = 145.695159912109400000
  25. Align = alClient
  26. OnMouseDown = ViewerMouseDown
  27. OnMouseMove = ViewerMouseMove
  28. TabOrder = 0
  29. end
  30. object Panel1: TPanel
  31. Left = 0
  32. Top = 324
  33. Width = 588
  34. Height = 97
  35. Align = alBottom
  36. BevelOuter = bvNone
  37. TabOrder = 1
  38. object Label2: TLabel
  39. Left = 8
  40. Top = 56
  41. Width = 22
  42. Height = 13
  43. Caption = 'Step'
  44. end
  45. object Label1: TLabel
  46. Left = 8
  47. Top = 8
  48. Width = 47
  49. Height = 13
  50. Caption = 'MaxSteps'
  51. end
  52. object Label3: TLabel
  53. Left = 424
  54. Top = 8
  55. Width = 30
  56. Height = 13
  57. Caption = 'Speed'
  58. end
  59. object CheckOn: TCheckBox
  60. Left = 488
  61. Top = 64
  62. Width = 41
  63. Height = 17
  64. Caption = 'On'
  65. TabOrder = 0
  66. OnClick = CheckOnClick
  67. end
  68. object Button1: TButton
  69. Left = 408
  70. Top = 64
  71. Width = 75
  72. Height = 25
  73. Caption = 'Reset'
  74. TabOrder = 1
  75. OnClick = Button1Click
  76. end
  77. object StepBar: TProgressBar
  78. Left = 8
  79. Top = 72
  80. Width = 393
  81. Height = 16
  82. Max = 200
  83. Smooth = True
  84. TabOrder = 2
  85. end
  86. object MaxStepsBar: TTrackBar
  87. Left = 1
  88. Top = 25
  89. Width = 409
  90. Height = 25
  91. Max = 200
  92. TabOrder = 3
  93. ThumbLength = 15
  94. OnChange = MaxStepsBarChange
  95. end
  96. object SpeedBar: TTrackBar
  97. Left = 416
  98. Top = 24
  99. Width = 121
  100. Height = 25
  101. Max = 20
  102. Position = 1
  103. TabOrder = 4
  104. ThumbLength = 15
  105. OnChange = SpeedBarChange
  106. end
  107. end
  108. object GLScene1: TGLScene
  109. Left = 80
  110. Top = 16
  111. object mesh: TGLFreeForm
  112. Scale.Coordinates = {CDCCCC3ECDCCCC3ECDCCCC3E00000000}
  113. NormalsOrientation = mnoInvert
  114. EffectsData = {
  115. 0458434F4C02010201060F54474C424578706C6F73696F6E4658020012000000
  116. 0002000200}
  117. end
  118. object Camera1: TGLCamera
  119. DepthOfView = 100.000000000000000000
  120. FocalLength = 50.000000000000000000
  121. TargetObject = mesh
  122. Position.Coordinates = {0000000000004842000000000000803F}
  123. Direction.Coordinates = {00000000000080BF0000000000000000}
  124. Up.Coordinates = {E8DC723F000000009BE8A1BE00000000}
  125. Left = 328
  126. Top = 216
  127. object GLLightSource1: TGLLightSource
  128. ConstAttenuation = 1.000000000000000000
  129. SpotCutOff = 180.000000000000000000
  130. SpotDirection.Coordinates = {00000000000000000000803F00000000}
  131. end
  132. end
  133. end
  134. object GLCadencer1: TGLCadencer
  135. Scene = GLScene1
  136. OnProgress = GLCadencer1Progress
  137. Left = 80
  138. Top = 72
  139. end
  140. end