コード例 #1
0
ファイル: FieldComponent.cs プロジェクト: vadella/gps_tracker
 internal FieldComponent(FieldComponent component)
 {
     this.fieldNum         = component.fieldNum;
     this.accumulate       = component.accumulate;
     this.bits             = component.bits;
     this.scale            = component.scale;
     this.offset           = component.offset;
     this.accumulatedValue = component.accumulatedValue;
     this.lastValue        = component.lastValue;
 }
コード例 #2
0
ファイル: FieldComponent.cs プロジェクト: phleb3/ReadFit
 internal FieldComponent(FieldComponent component)
 {
     this.fieldNum = component.fieldNum;
      this.accumulate = component.accumulate;
      this.bits = component.bits;
      this.scale = component.scale;
      this.offset = component.offset;
      this.accumulatedValue = component.accumulatedValue;
      this.lastValue = component.lastValue;
 }
コード例 #3
0
ファイル: Subfield.cs プロジェクト: gabornemeth/MoveSharp
 internal void AddComponent(FieldComponent newComponent)
 {
     components.Add(newComponent);
 }
コード例 #4
0
ファイル: Subfield.cs プロジェクト: dgaff/fitsdk
 internal void AddComponent(FieldComponent newComponent)
 {
     components.Add(newComponent);
 }