-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathUnit_FrameSampleTileMesh.pas
47 lines (42 loc) · 1.05 KB
/
Unit_FrameSampleTileMesh.pas
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
unit Unit_FrameSampleTileMesh;
interface
uses
Vcl.Forms, Vcl.Controls, Vcl.StdCtrls, System.Classes, Vcl.ExtCtrls, Vcl.Samples.Spin, Vcl.ComCtrls;
type
TFrameSampleTileMesh = class(TFrame)
Label13: TLabel;
Label12: TLabel;
Label11: TLabel;
Label10: TLabel;
Label9: TLabel;
Label8: TLabel;
Label7: TLabel;
Label6: TLabel;
Label5: TLabel;
Label4: TLabel;
Label2: TLabel;
Label1: TLabel;
Label3: TLabel;
seCellSize: TSpinEdit;
seMaxSampleError: TSpinEdit;
seSampleDistance: TSpinEdit;
seVertsPerPoly: TSpinEdit;
seMaxEdgeError: TSpinEdit;
seMaxEdgeLength: TSpinEdit;
rgPartitioning: TRadioGroup;
seMergedRegionSize: TSpinEdit;
seMinRegionSize: TSpinEdit;
seMaxSlope: TSpinEdit;
seMaxClimb: TSpinEdit;
seAgentRadius: TSpinEdit;
seAgentHeight: TSpinEdit;
seCellHeight: TSpinEdit;
cbKeepIntermediateResults: TCheckBox;
rgDrawMode: TRadioGroup;
cbBuildAll: TCheckBox;
tbTileSize: TTrackBar;
Label14: TLabel;
end;
implementation
{$R *.dfm}
end.