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