コード例 #1
0
ファイル: AncillaryDataSet.cs プロジェクト: Bobfrat/RTI
 /// <summary>
 /// Add additional data to the dataset.
 /// This will add the heading, pitch and roll
 /// from the NMEA sentence.
 /// </summary>
 /// <param name="sentence">Sentence containing data.</param>
 public void AddAncillaryData(Prti30Sentence sentence)
 {
     Heading = sentence.Heading;
     Pitch = sentence.Pitch;
     Roll = sentence.Roll;
 }
コード例 #2
0
ファイル: BottomTrackDataSet.cs プロジェクト: Bobfrat/RTI
 /// <summary>
 /// This will add additional Bottom Track data from the
 /// Prti30Sentence.
 /// </summary>
 /// <param name="sentence">Additional data to add to the dataset.</param>
 public void AddAdditionalBottomTrackData(Prti30Sentence sentence)
 {
     Heading = sentence.Heading;
     Pitch = sentence.Pitch;
     Roll = sentence.Roll;
 }
コード例 #3
0
 /// <summary>
 /// Add additional data to the dataset.
 /// This will add the heading, pitch and roll
 /// from the NMEA sentence.
 /// </summary>
 /// <param name="sentence">Sentence containing data.</param>
 public void AddAncillaryData(Prti30Sentence sentence)
 {
     Heading = sentence.Heading;
     Pitch   = sentence.Pitch;
     Roll    = sentence.Roll;
 }