1 namespace Projections
2 {
3     partial class SphericalHarmonicsPanel
4     {
5         /// <summary>
6         /// Required designer variable.
7         /// </summary>
8         private System.ComponentModel.IContainer components = null;
9 
10         /// <summary>
11         /// Clean up any resources being used.
12         /// </summary>
13         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
Dispose(bool disposing)14         protected override void Dispose(bool disposing)
15         {
16             if (disposing && (components != null))
17             {
18                 components.Dispose();
19             }
20             base.Dispose(disposing);
21         }
22 
23         #region Component Designer generated code
24 
25         /// <summary>
26         /// Required method for Designer support - do not modify
27         /// the contents of this method with the code editor.
28         /// </summary>
InitializeComponent()29         private void InitializeComponent()
30         {
31             this.components = new System.ComponentModel.Container();
32             this.m_toolTip = new System.Windows.Forms.ToolTip(this.components);
33             this.m_classComboBox = new System.Windows.Forms.ComboBox();
34             this.button1 = new System.Windows.Forms.Button();
35             this.label2 = new System.Windows.Forms.Label();
36             this.label1 = new System.Windows.Forms.Label();
37             this.label3 = new System.Windows.Forms.Label();
38             this.m_tau1Label = new System.Windows.Forms.Label();
39             this.label4 = new System.Windows.Forms.Label();
40             this.m_xTextBox = new System.Windows.Forms.TextBox();
41             this.m_yTextBox = new System.Windows.Forms.TextBox();
42             this.m_zTextBox = new System.Windows.Forms.TextBox();
43             this.m_tau1TextBox = new System.Windows.Forms.TextBox();
44             this.m_tau2TextBox = new System.Windows.Forms.TextBox();
45             this.label5 = new System.Windows.Forms.Label();
46             this.label6 = new System.Windows.Forms.Label();
47             this.label7 = new System.Windows.Forms.Label();
48             this.label8 = new System.Windows.Forms.Label();
49             this.label9 = new System.Windows.Forms.Label();
50             this.m_sumTextBox = new System.Windows.Forms.TextBox();
51             this.m_gradXTextBox = new System.Windows.Forms.TextBox();
52             this.m_gradYTextBox = new System.Windows.Forms.TextBox();
53             this.m_gradZTextBox = new System.Windows.Forms.TextBox();
54             this.button2 = new System.Windows.Forms.Button();
55             this.label10 = new System.Windows.Forms.Label();
56             this.label11 = new System.Windows.Forms.Label();
57             this.m_circleRadiusTextBox = new System.Windows.Forms.TextBox();
58             this.m_circleHeightTextBox = new System.Windows.Forms.TextBox();
59             this.label12 = new System.Windows.Forms.Label();
60             this.m_longitudeTextBox = new System.Windows.Forms.TextBox();
61             this.button3 = new System.Windows.Forms.Button();
62             this.SuspendLayout();
63             //
64             // m_classComboBox
65             //
66             this.m_classComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
67             this.m_classComboBox.FormattingEnabled = true;
68             this.m_classComboBox.Items.AddRange(new object[] {
69             "Spherical Harmonic",
70             "Spherical Harmonic 1",
71             "Spherical Harmonic 2"});
72             this.m_classComboBox.Location = new System.Drawing.Point(4, 155);
73             this.m_classComboBox.Name = "m_classComboBox";
74             this.m_classComboBox.Size = new System.Drawing.Size(139, 21);
75             this.m_classComboBox.TabIndex = 10;
76             this.m_toolTip.SetToolTip(this.m_classComboBox, "Select Class");
77             this.m_classComboBox.SelectedIndexChanged += new System.EventHandler(this.OnClass);
78             //
79             // button1
80             //
81             this.button1.Location = new System.Drawing.Point(203, 112);
82             this.button1.Name = "button1";
83             this.button1.Size = new System.Drawing.Size(75, 23);
84             this.button1.TabIndex = 12;
85             this.button1.Text = "Compute";
86             this.m_toolTip.SetToolTip(this.button1, "Compute harmonic sum and gradient");
87             this.button1.UseVisualStyleBackColor = true;
88             this.button1.Click += new System.EventHandler(this.OnCompute);
89             //
90             // label2
91             //
92             this.label2.AutoSize = true;
93             this.label2.Location = new System.Drawing.Point(4, 8);
94             this.label2.Name = "label2";
95             this.label2.Size = new System.Drawing.Size(14, 13);
96             this.label2.TabIndex = 0;
97             this.label2.Text = "X";
98             //
99             // label1
100             //
101             this.label1.AutoSize = true;
102             this.label1.Location = new System.Drawing.Point(4, 34);
103             this.label1.Name = "label1";
104             this.label1.Size = new System.Drawing.Size(14, 13);
105             this.label1.TabIndex = 1;
106             this.label1.Text = "Y";
107             //
108             // label3
109             //
110             this.label3.AutoSize = true;
111             this.label3.Location = new System.Drawing.Point(4, 60);
112             this.label3.Name = "label3";
113             this.label3.Size = new System.Drawing.Size(14, 13);
114             this.label3.TabIndex = 2;
115             this.label3.Text = "Z";
116             //
117             // m_tau1Label
118             //
119             this.m_tau1Label.AutoSize = true;
120             this.m_tau1Label.Location = new System.Drawing.Point(4, 86);
121             this.m_tau1Label.Name = "m_tau1Label";
122             this.m_tau1Label.Size = new System.Drawing.Size(31, 13);
123             this.m_tau1Label.TabIndex = 3;
124             this.m_tau1Label.Text = "tau 1";
125             //
126             // label4
127             //
128             this.label4.AutoSize = true;
129             this.label4.Location = new System.Drawing.Point(4, 112);
130             this.label4.Name = "label4";
131             this.label4.Size = new System.Drawing.Size(31, 13);
132             this.label4.TabIndex = 4;
133             this.label4.Text = "tau 2";
134             //
135             // m_xTextBox
136             //
137             this.m_xTextBox.Location = new System.Drawing.Point(43, 4);
138             this.m_xTextBox.Name = "m_xTextBox";
139             this.m_xTextBox.Size = new System.Drawing.Size(100, 20);
140             this.m_xTextBox.TabIndex = 5;
141             //
142             // m_yTextBox
143             //
144             this.m_yTextBox.Location = new System.Drawing.Point(43, 30);
145             this.m_yTextBox.Name = "m_yTextBox";
146             this.m_yTextBox.Size = new System.Drawing.Size(100, 20);
147             this.m_yTextBox.TabIndex = 6;
148             //
149             // m_zTextBox
150             //
151             this.m_zTextBox.Location = new System.Drawing.Point(43, 56);
152             this.m_zTextBox.Name = "m_zTextBox";
153             this.m_zTextBox.Size = new System.Drawing.Size(100, 20);
154             this.m_zTextBox.TabIndex = 7;
155             //
156             // m_tau1TextBox
157             //
158             this.m_tau1TextBox.Location = new System.Drawing.Point(43, 82);
159             this.m_tau1TextBox.Name = "m_tau1TextBox";
160             this.m_tau1TextBox.Size = new System.Drawing.Size(100, 20);
161             this.m_tau1TextBox.TabIndex = 8;
162             //
163             // m_tau2TextBox
164             //
165             this.m_tau2TextBox.Location = new System.Drawing.Point(43, 108);
166             this.m_tau2TextBox.Name = "m_tau2TextBox";
167             this.m_tau2TextBox.Size = new System.Drawing.Size(100, 20);
168             this.m_tau2TextBox.TabIndex = 9;
169             //
170             // label5
171             //
172             this.label5.AutoSize = true;
173             this.label5.Location = new System.Drawing.Point(4, 136);
174             this.label5.Name = "label5";
175             this.label5.Size = new System.Drawing.Size(32, 13);
176             this.label5.TabIndex = 11;
177             this.label5.Text = "Class";
178             //
179             // label6
180             //
181             this.label6.AutoSize = true;
182             this.label6.Location = new System.Drawing.Point(158, 8);
183             this.label6.Name = "label6";
184             this.label6.Size = new System.Drawing.Size(76, 13);
185             this.label6.TabIndex = 13;
186             this.label6.Text = "Harmonic Sum";
187             //
188             // label7
189             //
190             this.label7.AutoSize = true;
191             this.label7.Location = new System.Drawing.Point(158, 33);
192             this.label7.Name = "label7";
193             this.label7.Size = new System.Drawing.Size(57, 13);
194             this.label7.TabIndex = 14;
195             this.label7.Text = "X Gradient";
196             //
197             // label8
198             //
199             this.label8.AutoSize = true;
200             this.label8.Location = new System.Drawing.Point(158, 60);
201             this.label8.Name = "label8";
202             this.label8.Size = new System.Drawing.Size(57, 13);
203             this.label8.TabIndex = 15;
204             this.label8.Text = "Y Gradient";
205             //
206             // label9
207             //
208             this.label9.AutoSize = true;
209             this.label9.Location = new System.Drawing.Point(158, 86);
210             this.label9.Name = "label9";
211             this.label9.Size = new System.Drawing.Size(57, 13);
212             this.label9.TabIndex = 16;
213             this.label9.Text = "X Gradient";
214             //
215             // m_sumTextBox
216             //
217             this.m_sumTextBox.Location = new System.Drawing.Point(241, 4);
218             this.m_sumTextBox.Name = "m_sumTextBox";
219             this.m_sumTextBox.ReadOnly = true;
220             this.m_sumTextBox.Size = new System.Drawing.Size(100, 20);
221             this.m_sumTextBox.TabIndex = 17;
222             //
223             // m_gradXTextBox
224             //
225             this.m_gradXTextBox.Location = new System.Drawing.Point(241, 29);
226             this.m_gradXTextBox.Name = "m_gradXTextBox";
227             this.m_gradXTextBox.ReadOnly = true;
228             this.m_gradXTextBox.Size = new System.Drawing.Size(100, 20);
229             this.m_gradXTextBox.TabIndex = 18;
230             //
231             // m_gradYTextBox
232             //
233             this.m_gradYTextBox.Location = new System.Drawing.Point(241, 56);
234             this.m_gradYTextBox.Name = "m_gradYTextBox";
235             this.m_gradYTextBox.ReadOnly = true;
236             this.m_gradYTextBox.Size = new System.Drawing.Size(100, 20);
237             this.m_gradYTextBox.TabIndex = 19;
238             //
239             // m_gradZTextBox
240             //
241             this.m_gradZTextBox.Location = new System.Drawing.Point(241, 82);
242             this.m_gradZTextBox.Name = "m_gradZTextBox";
243             this.m_gradZTextBox.ReadOnly = true;
244             this.m_gradZTextBox.Size = new System.Drawing.Size(100, 20);
245             this.m_gradZTextBox.TabIndex = 20;
246             //
247             // button2
248             //
249             this.button2.Location = new System.Drawing.Point(406, 86);
250             this.button2.Name = "button2";
251             this.button2.Size = new System.Drawing.Size(100, 23);
252             this.button2.TabIndex = 21;
253             this.button2.Text = "Circular Engine";
254             this.m_toolTip.SetToolTip(this.button2, "Calculates the sum for the given radius, height, and longitude using a Circular E" +
255                     "ngine");
256             this.button2.UseVisualStyleBackColor = true;
257             this.button2.Click += new System.EventHandler(this.OnCircularEngine);
258             //
259             // label10
260             //
261             this.label10.AutoSize = true;
262             this.label10.Location = new System.Drawing.Point(348, 8);
263             this.label10.Name = "label10";
264             this.label10.Size = new System.Drawing.Size(69, 13);
265             this.label10.TabIndex = 22;
266             this.label10.Text = "Circle Radius";
267             //
268             // label11
269             //
270             this.label11.AutoSize = true;
271             this.label11.Location = new System.Drawing.Point(348, 33);
272             this.label11.Name = "label11";
273             this.label11.Size = new System.Drawing.Size(67, 13);
274             this.label11.TabIndex = 23;
275             this.label11.Text = "Circle Height";
276             //
277             // m_circleRadiusTextBox
278             //
279             this.m_circleRadiusTextBox.Location = new System.Drawing.Point(458, 4);
280             this.m_circleRadiusTextBox.Name = "m_circleRadiusTextBox";
281             this.m_circleRadiusTextBox.Size = new System.Drawing.Size(100, 20);
282             this.m_circleRadiusTextBox.TabIndex = 24;
283             //
284             // m_circleHeightTextBox
285             //
286             this.m_circleHeightTextBox.Location = new System.Drawing.Point(458, 29);
287             this.m_circleHeightTextBox.Name = "m_circleHeightTextBox";
288             this.m_circleHeightTextBox.Size = new System.Drawing.Size(100, 20);
289             this.m_circleHeightTextBox.TabIndex = 25;
290             //
291             // label12
292             //
293             this.label12.AutoSize = true;
294             this.label12.Location = new System.Drawing.Point(348, 60);
295             this.label12.Name = "label12";
296             this.label12.Size = new System.Drawing.Size(101, 13);
297             this.label12.TabIndex = 26;
298             this.label12.Text = "Longitude (degrees)";
299             //
300             // m_longitudeTextBox
301             //
302             this.m_longitudeTextBox.Location = new System.Drawing.Point(458, 56);
303             this.m_longitudeTextBox.Name = "m_longitudeTextBox";
304             this.m_longitudeTextBox.Size = new System.Drawing.Size(100, 20);
305             this.m_longitudeTextBox.TabIndex = 27;
306             //
307             // button3
308             //
309             this.button3.Location = new System.Drawing.Point(203, 155);
310             this.button3.Name = "button3";
311             this.button3.Size = new System.Drawing.Size(75, 23);
312             this.button3.TabIndex = 28;
313             this.button3.Text = "Validate";
314             this.button3.UseVisualStyleBackColor = true;
315             this.button3.Click += new System.EventHandler(this.OnValidate);
316             //
317             // SphericalHarmonicsPanel
318             //
319             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
320             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
321             this.Controls.Add(this.button3);
322             this.Controls.Add(this.m_longitudeTextBox);
323             this.Controls.Add(this.label12);
324             this.Controls.Add(this.m_circleHeightTextBox);
325             this.Controls.Add(this.m_circleRadiusTextBox);
326             this.Controls.Add(this.label11);
327             this.Controls.Add(this.label10);
328             this.Controls.Add(this.button2);
329             this.Controls.Add(this.m_gradZTextBox);
330             this.Controls.Add(this.m_gradYTextBox);
331             this.Controls.Add(this.m_gradXTextBox);
332             this.Controls.Add(this.m_sumTextBox);
333             this.Controls.Add(this.label9);
334             this.Controls.Add(this.label8);
335             this.Controls.Add(this.label7);
336             this.Controls.Add(this.label6);
337             this.Controls.Add(this.button1);
338             this.Controls.Add(this.label5);
339             this.Controls.Add(this.m_classComboBox);
340             this.Controls.Add(this.m_tau2TextBox);
341             this.Controls.Add(this.m_tau1TextBox);
342             this.Controls.Add(this.m_zTextBox);
343             this.Controls.Add(this.m_yTextBox);
344             this.Controls.Add(this.m_xTextBox);
345             this.Controls.Add(this.label4);
346             this.Controls.Add(this.m_tau1Label);
347             this.Controls.Add(this.label3);
348             this.Controls.Add(this.label1);
349             this.Controls.Add(this.label2);
350             this.Name = "SphericalHarmonicsPanel";
351             this.Size = new System.Drawing.Size(785, 293);
352             this.ResumeLayout(false);
353             this.PerformLayout();
354 
355         }
356 
357         #endregion
358 
359         private System.Windows.Forms.ToolTip m_toolTip;
360         private System.Windows.Forms.Label label2;
361         private System.Windows.Forms.Label label1;
362         private System.Windows.Forms.Label label3;
363         private System.Windows.Forms.Label m_tau1Label;
364         private System.Windows.Forms.Label label4;
365         private System.Windows.Forms.TextBox m_xTextBox;
366         private System.Windows.Forms.TextBox m_yTextBox;
367         private System.Windows.Forms.TextBox m_zTextBox;
368         private System.Windows.Forms.TextBox m_tau1TextBox;
369         private System.Windows.Forms.TextBox m_tau2TextBox;
370         private System.Windows.Forms.ComboBox m_classComboBox;
371         private System.Windows.Forms.Label label5;
372         private System.Windows.Forms.Button button1;
373         private System.Windows.Forms.Label label6;
374         private System.Windows.Forms.Label label7;
375         private System.Windows.Forms.Label label8;
376         private System.Windows.Forms.Label label9;
377         private System.Windows.Forms.TextBox m_sumTextBox;
378         private System.Windows.Forms.TextBox m_gradXTextBox;
379         private System.Windows.Forms.TextBox m_gradYTextBox;
380         private System.Windows.Forms.TextBox m_gradZTextBox;
381         private System.Windows.Forms.Button button2;
382         private System.Windows.Forms.Label label10;
383         private System.Windows.Forms.Label label11;
384         private System.Windows.Forms.TextBox m_circleRadiusTextBox;
385         private System.Windows.Forms.TextBox m_circleHeightTextBox;
386         private System.Windows.Forms.Label label12;
387         private System.Windows.Forms.TextBox m_longitudeTextBox;
388         private System.Windows.Forms.Button button3;
389     }
390 }
391