forked from thargor6/mb3d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMand.dfm
3386 lines (3386 loc) · 110 KB
/
Mand.dfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
object Mand3DForm: TMand3DForm
Left = 65
Top = 100
ClientHeight = 572
ClientWidth = 771
Color = clBtnFace
Constraints.MinHeight = 300
Constraints.MinWidth = 200
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
KeyPreview = True
OldCreateOrder = False
Visible = True
OnClose = FormClose
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDestroy = FormDestroy
OnDragOver = FormDragOver
OnHide = FormHide
OnKeyPress = FormKeyPress
OnMouseWheel = FormMouseWheel
OnResize = FormResize
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Panel1: TPanel
Left = 618
Top = 0
Width = 153
Height = 572
Align = alRight
ParentShowHint = False
ShowHint = False
TabOrder = 0
object PositionBtn: TSpeedButton
Left = 1
Top = 1
Width = 151
Height = 21
Hint = 'Click to hide/show'
Align = alTop
AllowAllUp = True
GroupIndex = 1
Caption = 'Position'
ParentShowHint = False
ShowHint = True
OnClick = PositionBtnClick
ExplicitLeft = -8
ExplicitTop = -1
ExplicitWidth = 255
end
object RotationBtn: TSpeedButton
Left = 1
Top = 172
Width = 151
Height = 21
Hint = 'Click to hide/show'
Align = alTop
AllowAllUp = True
GroupIndex = 2
Caption = 'Rotation'
ParentShowHint = False
ShowHint = True
OnClick = RotationBtnClick
ExplicitLeft = 6
ExplicitTop = 211
end
object PositionPnl: TPanel
Left = 1
Top = 22
Width = 151
Height = 150
Align = alTop
BevelOuter = bvNone
UseDockManager = False
TabOrder = 0
Visible = False
object Label9: TLabel
Left = 5
Top = 4
Width = 29
Height = 13
Alignment = taRightJustify
Caption = 'X mid:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Label10: TLabel
Left = 6
Top = 26
Width = 29
Height = 13
Alignment = taRightJustify
Caption = 'Y mid:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object SpeedButton32: TSpeedButton
Tag = 2
Left = -1
Top = 45
Width = 40
Height = 19
Hint = 'Click to render the 2d plane at the midpoint.'
Caption = 'Z mid'
ParentShowHint = False
ShowHint = True
OnClick = Button1Click
end
object SpeedButton33: TSpeedButton
Tag = 1
Left = -1
Top = 67
Width = 40
Height = 19
Hint = 'Click to render the 2d startplane.'
Caption = 'Z start'
ParentShowHint = False
ShowHint = True
OnClick = Button1Click
end
object SpeedButton34: TSpeedButton
Tag = 3
Left = -1
Top = 89
Width = 40
Height = 18
Hint = 'Click to render the Z endplane.'
Caption = 'Z end'
ParentShowHint = False
ShowHint = True
OnClick = Button1Click
end
object SpeedButton30: TSpeedButton
Left = 40
Top = 109
Width = 70
Height = 19
Hint =
'Click on the object in the image to be centered.'#13#10'The camera dir' +
'ection will not be changed, use the rotation'#13#10'options to rotate ' +
'around the midpoint.'
Caption = 'get midpoint'
ParentShowHint = False
ShowHint = True
OnClick = SpeedButton30Click
end
object SpeedButton31: TSpeedButton
Left = 112
Top = 109
Width = 35
Height = 19
Hint =
'Reset the position and the rotation to the start values.'#13#10'On box' +
' formulas it will be automatically zoomed out more.'
Caption = 'reset'
ParentShowHint = False
ShowHint = True
OnClick = Button14Click
end
object Label5: TLabel
Left = 5
Top = 131
Width = 30
Height = 13
Alignment = taRightJustify
Caption = 'Zoom:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Edit9: TEdit
Left = 38
Top = 1
Width = 109
Height = 21
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Serif'
Font.Style = []
ParentFont = False
TabOrder = 0
Text = '0.0'
end
object Edit10: TEdit
Left = 38
Top = 23
Width = 109
Height = 21
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Serif'
Font.Style = []
ParentFont = False
TabOrder = 1
Text = '0.0'
end
object Edit17: TEdit
Left = 38
Top = 45
Width = 109
Height = 21
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Serif'
Font.Style = []
ParentFont = False
TabOrder = 2
Text = '0.0'
end
object Edit1: TEdit
Left = 38
Top = 67
Width = 109
Height = 21
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Serif'
Font.Style = []
ParentFont = False
TabOrder = 3
Text = '-2.0'
end
object Edit3: TEdit
Left = 38
Top = 89
Width = 109
Height = 21
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Serif'
Font.Style = []
ParentFont = False
TabOrder = 4
Text = '30.0'
end
object Edit5: TEdit
Left = 38
Top = 128
Width = 109
Height = 21
Hint =
'Defines the size of the Zstart viewplane.'#13#10'It is set automatical' +
'ly when using the navigator,'#13#10'change only if objects are cutted ' +
'at the image'#13#10'borders.'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Serif'
Font.Style = []
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 5
Text = '1.0'
end
end
object RotationPnl: TPanel
Left = 1
Top = 193
Width = 151
Height = 158
Align = alTop
BevelOuter = bvNone
UseDockManager = False
TabOrder = 1
Visible = False
object Label53: TLabel
Left = 10
Top = 3
Width = 61
Height = 13
Alignment = taCenter
Caption = 'Euler angles:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Label54: TLabel
Left = 9
Top = 24
Width = 10
Height = 13
Alignment = taRightJustify
Caption = 'X:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Label55: TLabel
Left = 9
Top = 48
Width = 10
Height = 13
Alignment = taRightJustify
Caption = 'Y:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Label56: TLabel
Left = 9
Top = 72
Width = 10
Height = 13
Alignment = taRightJustify
Caption = 'Z:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Label57: TLabel
Left = 3
Top = 116
Width = 139
Height = 26
Alignment = taCenter
Caption = 'Apply your changed values, because edits are only output'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
WordWrap = True
end
object Button7: TButton
Left = 3
Top = 94
Width = 88
Height = 22
Hint = 'The rotation is performed around the Midpoint (Xmid, Ymid, Zmid)'
Caption = 'Apply to image'
ParentShowHint = False
ShowHint = True
TabOrder = 0
OnClick = Button7Click
end
object ButtonR0: TButton
Left = 97
Top = 94
Width = 49
Height = 22
Caption = 'Reset 0'
TabOrder = 1
OnClick = ButtonR0Click
end
object Edit27: TEdit
Left = 25
Top = 21
Width = 120
Height = 21
TabOrder = 2
Text = '0.0'
OnChange = SpinEdit2Change
end
object Edit31: TEdit
Left = 25
Top = 45
Width = 120
Height = 21
Hint =
'Case Y angle is at 90 or -90 degrees, euler angles can'#39't be calc' +
'ulated!'
ParentShowHint = False
ShowHint = True
TabOrder = 3
Text = '0.0'
OnChange = SpinEdit2Change
end
object Edit32: TEdit
Left = 25
Top = 69
Width = 120
Height = 21
TabOrder = 4
Text = '0.0'
OnChange = SpinEdit2Change
end
end
object Memo1: TMemo
Left = 1
Top = 710
Width = 151
Height = 80
Hint = 'Shows messages'
Align = alTop
BorderStyle = bsNone
Color = clSilver
Ctl3D = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clTeal
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentCtl3D = False
ParentFont = False
ParentShowHint = False
ReadOnly = True
ShowHint = True
TabOrder = 5
end
object PageControl1: TPageControl
Left = 1
Top = 446
Width = 151
Height = 264
ActivePage = TabSheet5
Align = alTop
BiDiMode = bdLeftToRight
DoubleBuffered = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = []
HotTrack = True
MultiLine = True
ParentBiDiMode = False
ParentDoubleBuffered = False
ParentFont = False
TabOrder = 3
Touch.ParentTabletOptions = False
Touch.TabletOptions = []
OnChange = PageControl1Change
object TabSheet2: TTabSheet
Caption = 'Calculation'
Highlighted = True
ImageIndex = 1
ExplicitLeft = 0
ExplicitTop = 0
ExplicitWidth = 0
ExplicitHeight = 0
object Label16: TLabel
Left = 4
Top = 125
Width = 81
Height = 13
Alignment = taRightJustify
Caption = 'Smooth normals:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Label18: TLabel
Left = 44
Top = 6
Width = 41
Height = 13
Alignment = taRightJustify
Caption = 'DE stop:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Label22: TLabel
Left = 0
Top = 51
Width = 85
Height = 13
Alignment = taRightJustify
Caption = 'Raystep multiplier:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Label13: TLabel
Left = 18
Top = 93
Width = 67
Height = 26
Alignment = taRightJustify
Caption = 'Stepcount for '#13#10'binary search:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object SpeedButton10: TSpeedButton
Left = 0
Top = 0
Width = 23
Height = 22
Hint =
'Click on "M" to save these settings plus image width and scale'#13#10 +
'as a preset. Click afterwards on "preview", "mid" or "high"'#13#10'or' +
' again on "M" to cancel.'
AllowAllUp = True
GroupIndex = 5
Caption = 'M'
Flat = True
ParentShowHint = False
ShowHint = True
OnClick = SpeedButton10Click
end
object Label26: TLabel
Left = 6
Top = 74
Width = 79
Height = 13
Alignment = taRightJustify
Caption = 'Stepwidth limiter:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Edit25: TEdit
Left = 92
Top = 3
Width = 49
Height = 21
Hint =
'Defines the distance to the objects surface where raymarching st' +
'ops.'#13#10'Lower values gives more object details, but can also lead ' +
'to undersampling.'#13#10'The value is related to the width of a pixel.'
ParentShowHint = False
ShowHint = True
TabOrder = 0
Text = '1.0'
OnChange = SpinEdit2Change
end
object CheckBox9: TCheckBox
Left = 12
Top = 27
Width = 125
Height = 17
Hint =
'The distance to the objects surface, the raymarching stops, will' +
' get bigger with the distance to the viewer.'#13#10'This leads to a ho' +
'mogen object appearence, so it is normally choosen.'
Alignment = taLeftJustify
Caption = 'Vary DEstop on FOV:'
Checked = True
ParentShowHint = False
ShowHint = True
State = cbChecked
TabOrder = 1
end
object CheckBox1: TCheckBox
Left = 39
Top = 147
Width = 98
Height = 17
Hint = 'Uncheck this, if the image looks flat and noisy.'
Alignment = taLeftJustify
Caption = 'Normals on DE:'
Checked = True
ParentShowHint = False
ShowHint = True
State = cbChecked
TabOrder = 6
end
object Edit6: TEdit
Left = 92
Top = 48
Width = 49
Height = 21
Hint =
'The distance estimates are downscaled by this factor to avoid ov' +
'erstepping.'#13#10'Reduce the value if overstepping occurs (black pixe' +
'ls, noisy image).'#13#10'Too low values slows the rendering down.'
ParentShowHint = False
ShowHint = True
TabOrder = 2
Text = '0.5'
OnChange = SpinEdit2Change
end
object CheckBox3: TCheckBox
Left = 30
Top = 164
Width = 107
Height = 17
Hint =
'Multiplies the first stepwidth with a random number'#13#10'to give ove' +
'rstepping artifacts a noisy look. '#13#10'Also reduces banding in the' +
' dynamic fog. '
Alignment = taLeftJustify
Caption = 'First step random:'
Checked = True
ParentShowHint = False
ShowHint = True
State = cbChecked
TabOrder = 7
end
object CheckBox8: TCheckBox
Left = 1
Top = 198
Width = 136
Height = 17
Hint = 'Useful for steep heightmaps'
Alignment = taLeftJustify
Caption = 'Shortdistance check DE:'
ParentShowHint = False
ShowHint = True
TabOrder = 9
Visible = False
end
object Edit8: TEdit
Left = 92
Top = 71
Width = 49
Height = 21
Hint = 'Use values lower than 1 to reduce overstepping.'
ParentShowHint = False
ShowHint = True
TabOrder = 3
Text = '1.0'
OnChange = SpinEdit2Change
end
object Edit19: TEdit
Left = 92
Top = 122
Width = 30
Height = 21
ParentShowHint = False
ReadOnly = True
ShowHint = True
TabOrder = 5
Text = '0'
end
object SpinEdit2: TUpDown
Left = 122
Top = 122
Width = 19
Height = 21
Associate = Edit19
Max = 8
TabOrder = 10
OnChangingEx = SpinEdit2ChangingEx
end
object Edit20: TEdit
Left = 92
Top = 97
Width = 30
Height = 21
ParentShowHint = False
ReadOnly = True
ShowHint = True
TabOrder = 4
Text = '8'
end
object SpinEdit5: TUpDown
Left = 122
Top = 97
Width = 19
Height = 21
Associate = Edit20
Max = 31
Position = 8
TabOrder = 11
OnChangingEx = SpinEdit2ChangingEx
end
object CheckBox2: TCheckBox
Left = 13
Top = 181
Width = 124
Height = 17
Hint =
'Subtract an amount of DEstop from next raystep, recommended on h' +
'igh DEstop values.'
Alignment = taLeftJustify
Caption = 'Raystep sub DEstop:'
ParentShowHint = False
ShowHint = True
TabOrder = 8
end
end
object TabSheet4: TTabSheet
Caption = 'Internal'
ImageIndex = 3
ExplicitLeft = 0
ExplicitTop = 0
ExplicitWidth = 0
ExplicitHeight = 0
object Label15: TLabel
Left = 12
Top = 11
Width = 68
Height = 26
Alignment = taRightJustify
Caption = 'Threadcount '#13#10'in Calculations'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentColor = False
ParentFont = False
end
object Label3: TLabel
Left = 20
Top = 160
Width = 3
Height = 13
end
object Label17: TLabel
Left = 20
Top = 176
Width = 49
Height = 13
Caption = 'its for free!'
end
object Label33: TLabel
Left = 13
Top = 74
Width = 34
Height = 26
Alignment = taRightJustify
Caption = 'Thread'#13#10'Priority'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentColor = False
ParentFont = False
end
object ComboBox2: TComboBox
Left = 56
Top = 76
Width = 81
Height = 21
Style = csDropDownList
ItemIndex = 2
TabOrder = 0
Text = 'Lower'
OnChange = CheckBox14Click
Items.Strings = (
'Idle'
'Lowest'
'Lower'
'Normal')
end
object CheckBox12: TCheckBox
Left = 10
Top = 43
Width = 111
Height = 17
Hint =
'Detects the amount of processor cores on startup.'#13#10'You can choos' +
'e the amount yourself and disable'#13#10'this option to start with dif' +
'ferent settings.'
Alignment = taLeftJustify
Caption = 'Autodetect on start'
Checked = True
ParentShowHint = False
ShowHint = True
State = cbChecked
TabOrder = 1
end
object CheckBox14: TCheckBox
Left = 8
Top = 122
Width = 113
Height = 17
Hint =
'Check this to stop setting the slowest thread to a higher priori' +
'ty.'
Alignment = taLeftJustify
Caption = 'Disable threadboost'
Checked = True
ParentShowHint = False
ShowHint = True
State = cbChecked
TabOrder = 2
OnClick = CheckBox14Click
end
object CheckBox15: TCheckBox
Left = 24
Top = 104
Width = 97
Height = 17
Hint =
'Prevent the computer from shutdown by moving'#13#10'the mouse cursor f' +
'rom time to time a bit.'
Alignment = taLeftJustify
Caption = 'Keep this priority'
TabOrder = 3
end
object Edit21: TEdit
Left = 91
Top = 14
Width = 30
Height = 21
ParentShowHint = False
ReadOnly = True
ShowHint = True
TabOrder = 4
Text = '1'
end
object UpDown3: TUpDown
Left = 121
Top = 14
Width = 19
Height = 21
Associate = Edit21
Min = 1
Max = 64
Position = 1
TabOrder = 5
OnChangingEx = SpinEdit2ChangingEx
end
end
object TabSheet5: TTabSheet
Caption = 'Infos'
ImageIndex = 4
object Label29: TLabel
Left = 9
Top = 67
Width = 67
Height = 13
Alignment = taRightJustify
Caption = 'Avg. raysteps:'
end
object Label30: TLabel
Left = 6
Top = 88
Width = 70
Height = 13
Caption = 'Avg. iterations:'
end
object Label31: TLabel
Left = 86
Top = 67
Width = 3
Height = 13
end
object Label32: TLabel
Left = 86
Top = 88
Width = 3
Height = 13
end
object Label51: TLabel
Left = 6
Top = 127
Width = 71
Height = 13
Alignment = taRightJustify
Caption = 'Main calc time:'
end
object Label52: TLabel
Left = 86
Top = 127
Width = 3
Height = 13
end
object Label7: TLabel
Left = 14
Top = 145
Width = 63
Height = 13
Alignment = taRightJustify
Caption = 'HS calc time:'
end
object Label8: TLabel
Left = 86
Top = 145
Width = 3
Height = 13
end
object Label34: TLabel
Left = 6
Top = 106
Width = 71
Height = 13
Alignment = taRightJustify
Caption = 'Max. iterations:'
end
object Label40: TLabel
Left = 86
Top = 106
Width = 3
Height = 13
end
object Label47: TLabel
Left = 14
Top = 163
Width = 63
Height = 13
Alignment = taRightJustify
Caption = 'AO calc time:'
end
object Label48: TLabel
Left = 86
Top = 163
Width = 3
Height = 13
end
object Label49: TLabel
Left = 13
Top = 181
Width = 64
Height = 13
Alignment = taRightJustify
Caption = 'Reflects time:'
end
object Label50: TLabel
Left = 86
Top = 181
Width = 3
Height = 13
end
object Label60: TLabel
Left = 4
Top = 25
Width = 22
Height = 13
Alignment = taRightJustify
Caption = 'Orig:'
end
object Label59: TLabel
Left = 2
Top = 46
Width = 24
Height = 13
Alignment = taRightJustify
Caption = 'Mod:'
end
object Edit33: TEdit
Left = 32
Top = 23
Width = 109
Height = 19
Ctl3D = False
MaxLength = 16
ParentCtl3D = False
TabOrder = 0
OnChange = Edit33Change
end
object Edit34: TEdit
Left = 32
Top = 44
Width = 109
Height = 19
Ctl3D = False
MaxLength = 16
ParentCtl3D = False
TabOrder = 1
OnChange = Edit34Change
end
object ButtonAuthor: TButton
Left = 32
Top = 0
Width = 57
Height = 22
Hint = 'Click to choose your name for automatic saving in parameters'
Caption = 'Author:'
ParentShowHint = False
ShowHint = True
TabOrder = 2
OnClick = ButtonAuthorClick
end