summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--grapher/Form1.Designer.cs245
-rw-r--r--grapher/Form1.cs25
2 files changed, 253 insertions, 17 deletions
diff --git a/grapher/Form1.Designer.cs b/grapher/Form1.Designer.cs
index b39c887..296749c 100644
--- a/grapher/Form1.Designer.cs
+++ b/grapher/Form1.Designer.cs
@@ -28,49 +28,260 @@
/// </summary>
private void InitializeComponent()
{
- System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
- System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
- System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
+ System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea11 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
+ System.Windows.Forms.DataVisualization.Charting.Legend legend11 = new System.Windows.Forms.DataVisualization.Charting.Legend();
+ System.Windows.Forms.DataVisualization.Charting.Series series11 = new System.Windows.Forms.DataVisualization.Charting.Series();
this.AccelerationChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
+ this.comboBox1 = new System.Windows.Forms.ComboBox();
+ this.textBox1 = new System.Windows.Forms.TextBox();
+ this.label1 = new System.Windows.Forms.Label();
+ this.textBox2 = new System.Windows.Forms.TextBox();
+ this.label2 = new System.Windows.Forms.Label();
+ this.textBox3 = new System.Windows.Forms.TextBox();
+ this.label4 = new System.Windows.Forms.Label();
+ this.textBox4 = new System.Windows.Forms.TextBox();
+ this.label3 = new System.Windows.Forms.Label();
+ this.textBox5 = new System.Windows.Forms.TextBox();
+ this.label5 = new System.Windows.Forms.Label();
+ this.textBox6 = new System.Windows.Forms.TextBox();
+ this.textBox7 = new System.Windows.Forms.TextBox();
+ this.label6 = new System.Windows.Forms.Label();
+ this.textBox8 = new System.Windows.Forms.TextBox();
+ this.label7 = new System.Windows.Forms.Label();
+ this.textBox9 = new System.Windows.Forms.TextBox();
+ this.label8 = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.AccelerationChart)).BeginInit();
this.SuspendLayout();
//
// AccelerationChart
//
- chartArea1.AxisX.Title = "Speed (counts/ms)";
- chartArea1.AxisY.Title = "Sensitivity (magnitude ratio)";
- chartArea1.Name = "ChartArea1";
- this.AccelerationChart.ChartAreas.Add(chartArea1);
- legend1.Name = "Legend1";
- this.AccelerationChart.Legends.Add(legend1);
- this.AccelerationChart.Location = new System.Drawing.Point(0, 0);
+ chartArea11.AxisX.Title = "Speed (counts/ms)";
+ chartArea11.AxisY.Title = "Sensitivity (magnitude ratio)";
+ chartArea11.Name = "ChartArea1";
+ this.AccelerationChart.ChartAreas.Add(chartArea11);
+ legend11.Name = "Legend1";
+ this.AccelerationChart.Legends.Add(legend11);
+ this.AccelerationChart.Location = new System.Drawing.Point(162, 0);
this.AccelerationChart.Name = "AccelerationChart";
- series1.ChartArea = "ChartArea1";
- series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
- series1.Legend = "Legend1";
- series1.Name = "Accelerated Sensitivity";
- this.AccelerationChart.Series.Add(series1);
- this.AccelerationChart.Size = new System.Drawing.Size(800, 312);
+ series11.ChartArea = "ChartArea1";
+ series11.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
+ series11.Legend = "Legend1";
+ series11.Name = "Accelerated Sensitivity";
+ this.AccelerationChart.Series.Add(series11);
+ this.AccelerationChart.Size = new System.Drawing.Size(801, 312);
this.AccelerationChart.TabIndex = 0;
this.AccelerationChart.Text = "chart1";
//
+ // comboBox1
+ //
+ this.comboBox1.FormattingEnabled = true;
+ this.comboBox1.Items.AddRange(new object[] {
+ "Off",
+ "Linear",
+ "Classic",
+ "Natural",
+ "Logarithmic",
+ "Sigmoid",
+ "Power"});
+ this.comboBox1.Location = new System.Drawing.Point(15, 86);
+ this.comboBox1.Name = "comboBox1";
+ this.comboBox1.Size = new System.Drawing.Size(132, 21);
+ this.comboBox1.TabIndex = 2;
+ this.comboBox1.Text = "Acceleration Type";
+ this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
+ //
+ // textBox1
+ //
+ this.textBox1.Location = new System.Drawing.Point(96, 15);
+ this.textBox1.Name = "textBox1";
+ this.textBox1.Size = new System.Drawing.Size(51, 20);
+ this.textBox1.TabIndex = 3;
+ //
+ // label1
+ //
+ this.label1.AutoSize = true;
+ this.label1.Location = new System.Drawing.Point(15, 18);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(54, 13);
+ this.label1.TabIndex = 4;
+ this.label1.Text = "Sensitivity";
+ this.label1.Click += new System.EventHandler(this.label1_Click);
+ //
+ // textBox2
+ //
+ this.textBox2.Location = new System.Drawing.Point(96, 45);
+ this.textBox2.Name = "textBox2";
+ this.textBox2.Size = new System.Drawing.Size(51, 20);
+ this.textBox2.TabIndex = 5;
+ //
+ // label2
+ //
+ this.label2.AutoSize = true;
+ this.label2.Location = new System.Drawing.Point(22, 48);
+ this.label2.Name = "label2";
+ this.label2.Size = new System.Drawing.Size(47, 13);
+ this.label2.TabIndex = 6;
+ this.label2.Text = "Rotation";
+ //
+ // textBox3
+ //
+ this.textBox3.Location = new System.Drawing.Point(96, 113);
+ this.textBox3.Name = "textBox3";
+ this.textBox3.Size = new System.Drawing.Size(51, 20);
+ this.textBox3.TabIndex = 7;
+ this.textBox3.TextChanged += new System.EventHandler(this.textBox3_TextChanged);
+ //
+ // label4
+ //
+ this.label4.AutoSize = true;
+ this.label4.Location = new System.Drawing.Point(15, 116);
+ this.label4.Name = "label4";
+ this.label4.Size = new System.Drawing.Size(66, 13);
+ this.label4.TabIndex = 9;
+ this.label4.Text = "Acceleration";
+ //
+ // textBox4
+ //
+ this.textBox4.Location = new System.Drawing.Point(96, 140);
+ this.textBox4.Name = "textBox4";
+ this.textBox4.Size = new System.Drawing.Size(51, 20);
+ this.textBox4.TabIndex = 10;
+ //
+ // label3
+ //
+ this.label3.AutoSize = true;
+ this.label3.Location = new System.Drawing.Point(25, 143);
+ this.label3.Name = "label3";
+ this.label3.Size = new System.Drawing.Size(26, 13);
+ this.label3.TabIndex = 11;
+ this.label3.Text = "Cap";
+ //
+ // textBox5
+ //
+ this.textBox5.Location = new System.Drawing.Point(96, 167);
+ this.textBox5.Name = "textBox5";
+ this.textBox5.Size = new System.Drawing.Size(24, 20);
+ this.textBox5.TabIndex = 12;
+ //
+ // label5
+ //
+ this.label5.AutoSize = true;
+ this.label5.Location = new System.Drawing.Point(25, 173);
+ this.label5.Name = "label5";
+ this.label5.Size = new System.Drawing.Size(41, 13);
+ this.label5.TabIndex = 13;
+ this.label5.Text = "Weight";
+ //
+ // textBox6
+ //
+ this.textBox6.Location = new System.Drawing.Point(126, 167);
+ this.textBox6.Name = "textBox6";
+ this.textBox6.Size = new System.Drawing.Size(21, 20);
+ this.textBox6.TabIndex = 14;
+ //
+ // textBox7
+ //
+ this.textBox7.Location = new System.Drawing.Point(96, 219);
+ this.textBox7.Name = "textBox7";
+ this.textBox7.Size = new System.Drawing.Size(51, 20);
+ this.textBox7.TabIndex = 15;
+ //
+ // label6
+ //
+ this.label6.AutoSize = true;
+ this.label6.Location = new System.Drawing.Point(12, 222);
+ this.label6.Name = "label6";
+ this.label6.Size = new System.Drawing.Size(78, 13);
+ this.label6.TabIndex = 16;
+ this.label6.Text = "Limit/Exponent";
+ this.label6.Click += new System.EventHandler(this.label6_Click);
+ //
+ // textBox8
+ //
+ this.textBox8.Location = new System.Drawing.Point(96, 245);
+ this.textBox8.Name = "textBox8";
+ this.textBox8.Size = new System.Drawing.Size(51, 20);
+ this.textBox8.TabIndex = 17;
+ //
+ // label7
+ //
+ this.label7.AutoSize = true;
+ this.label7.Location = new System.Drawing.Point(22, 248);
+ this.label7.Name = "label7";
+ this.label7.Size = new System.Drawing.Size(47, 13);
+ this.label7.TabIndex = 18;
+ this.label7.Text = "Midpoint";
+ //
+ // textBox9
+ //
+ this.textBox9.Location = new System.Drawing.Point(96, 193);
+ this.textBox9.Name = "textBox9";
+ this.textBox9.Size = new System.Drawing.Size(51, 20);
+ this.textBox9.TabIndex = 19;
+ //
+ // label8
+ //
+ this.label8.AutoSize = true;
+ this.label8.Location = new System.Drawing.Point(25, 200);
+ this.label8.Name = "label8";
+ this.label8.Size = new System.Drawing.Size(35, 13);
+ this.label8.TabIndex = 20;
+ this.label8.Text = "Offset";
+ //
// RawAcceleration
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(800, 310);
+ this.ClientSize = new System.Drawing.Size(963, 310);
+ this.Controls.Add(this.label8);
+ this.Controls.Add(this.textBox9);
+ this.Controls.Add(this.label7);
+ this.Controls.Add(this.textBox8);
+ this.Controls.Add(this.label6);
+ this.Controls.Add(this.textBox7);
+ this.Controls.Add(this.textBox6);
+ this.Controls.Add(this.label5);
+ this.Controls.Add(this.textBox5);
+ this.Controls.Add(this.label3);
+ this.Controls.Add(this.textBox4);
+ this.Controls.Add(this.label4);
+ this.Controls.Add(this.textBox3);
+ this.Controls.Add(this.label2);
+ this.Controls.Add(this.textBox2);
+ this.Controls.Add(this.label1);
+ this.Controls.Add(this.textBox1);
+ this.Controls.Add(this.comboBox1);
this.Controls.Add(this.AccelerationChart);
this.Name = "RawAcceleration";
this.Text = "Raw Acceleration Graph";
this.Load += new System.EventHandler(this.Form1_Load);
((System.ComponentModel.ISupportInitialize)(this.AccelerationChart)).EndInit();
this.ResumeLayout(false);
+ this.PerformLayout();
}
#endregion
private System.Windows.Forms.DataVisualization.Charting.Chart AccelerationChart;
+ private System.Windows.Forms.ComboBox comboBox1;
+ private System.Windows.Forms.TextBox textBox1;
+ private System.Windows.Forms.Label label1;
+ private System.Windows.Forms.TextBox textBox2;
+ private System.Windows.Forms.Label label2;
+ private System.Windows.Forms.TextBox textBox3;
+ private System.Windows.Forms.Label label4;
+ private System.Windows.Forms.TextBox textBox4;
+ private System.Windows.Forms.Label label3;
+ private System.Windows.Forms.TextBox textBox5;
+ private System.Windows.Forms.Label label5;
+ private System.Windows.Forms.TextBox textBox6;
+ private System.Windows.Forms.TextBox textBox7;
+ private System.Windows.Forms.Label label6;
+ private System.Windows.Forms.TextBox textBox8;
+ private System.Windows.Forms.Label label7;
+ private System.Windows.Forms.TextBox textBox9;
+ private System.Windows.Forms.Label label8;
}
}
diff --git a/grapher/Form1.cs b/grapher/Form1.cs
index 3e627fe..6e81984 100644
--- a/grapher/Form1.cs
+++ b/grapher/Form1.cs
@@ -77,5 +77,30 @@ namespace grapher
{
}
+
+ private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
+ {
+
+ }
+
+ private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
+ {
+
+ }
+
+ private void label1_Click(object sender, EventArgs e)
+ {
+
+ }
+
+ private void textBox3_TextChanged(object sender, EventArgs e)
+ {
+
+ }
+
+ private void label6_Click(object sender, EventArgs e)
+ {
+
+ }
}
}