- using System;
- using System.Drawing;
- using System.Windows.Forms;
-
-
- namespace WindowsFormsApplication1
- {
- public partial class Form1 : Form
- {
-
- public Form1()
- {
- InitializeComponent();
- }
-
- private void button1_Click(object sender, EventArgs e)
- {
- if (!"".Equals(textBoxAngle.Text) && !"".Equals(textBoxBaseResult.Text))
- {
- // 斜辺
- textBoxHypotenuse.Text = "" + calcHypotenuse(double.Parse(textBoxAngle.Text), double.Parse(textBoxBaseResult.Text));
- // 高さ
- textBoxHeightResult.Text = "" + calcHeight(double.Parse(textBoxAngle.Text), double.Parse(textBoxBaseResult.Text));
- }
- }
-
- /**
- * 角度と底辺から斜辺を求める
- * @angle 角度
- * @_base 底辺
- * @return 斜辺
- */
- private double calcHypotenuse(double angle, double _base)
- {
- return _base / Math.Cos(Math.PI * angle / 180);
- }
-
- /**
- * 角度と底辺から高さを求める
- * @angle 角度
- * @_base 底辺
- * @return 斜辺
- */
- private double calcHeight(double angle, double _base)
- {
- return _base * Math.Tan(Math.PI * angle / 180);
- }
- }
- }
|