20240301_JSEQ_upperpc/JiangsuEarthquake_test/JiangsuEarthquake/Models/BaseStationGestureModel.cs

83 lines
1.7 KiB
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiangsuEarthquake.Models
{
public class BaseStationGestureModel : ParameterModel
{
private float rollAngle;
/// <summary>
/// 横滚角
/// </summary>
public float RollAngle
{
get { return rollAngle; }
set { rollAngle = value; this.DoNotify(); }
}
private float pitchAngle;
/// <summary>
/// 俯仰角
/// </summary>
public float PitchAngle
{
get { return pitchAngle; }
set { pitchAngle = value; this.DoNotify(); }
}
private float headingAngle;
/// <summary>
/// 航向角
/// </summary>
public float HeadingAngle
{
get { return headingAngle; }
set { headingAngle = value; this.DoNotify(); }
}
private float pY_HG;
/// <summary>
/// 横滚角偏移度数
/// </summary>
public float PY_HG
{
get { return pY_HG; }
set { pY_HG = value; this.DoNotify(); }
}
private float pY_FY;
/// <summary>
/// 俯仰角度偏移度数
/// </summary>
public float PY_FY
{
get { return pY_FY; }
set { pY_FY = value; this.DoNotify(); }
}
private float pY_PH;
/// <summary>
/// 航向角偏移度数
/// </summary>
public float PY_PH
{
get { return pY_PH; }
set { pY_PH = value; this.DoNotify(); }
}
}
}