Exemplo n.º 1
0
 public IByteBuffer WriteFloatLE(float value) => this.WriteIntLE(ByteBufferUtils.SingleToInt32Bits(value));
Exemplo n.º 2
0
 public IByteBuffer WriteFloat(float value)
 {
     this.WriteInt(ByteBufferUtils.SingleToInt32Bits(value));
     return(this);
 }
Exemplo n.º 3
0
 public IByteBuffer SetFloatLE(int index, float value)
 {
     return(this.SetIntLE(index, ByteBufferUtils.SingleToInt32Bits(value)));
 }
Exemplo n.º 4
0
 public float ReadFloatLE() => ByteBufferUtils.Int32BitsToSingle(this.ReadIntLE());
Exemplo n.º 5
0
 public float GetFloatLE(int index) => ByteBufferUtils.Int32BitsToSingle(this.GetIntLE(index));