Class GyroscopeDatum
Inheritance
System.Object
GyroscopeDatum
Assembly: SensusAndroid.dll
Syntax
public class GyroscopeDatum : Datum, IGyroscopeDatum, IDatum
Constructors
GyroscopeDatum(DateTimeOffset, Double, Double, Double)
Declaration
public GyroscopeDatum(DateTimeOffset timestamp, double x, double y, double z)
Parameters
Type |
Name |
Description |
System.DateTimeOffset |
timestamp |
|
System.Double |
x |
|
System.Double |
y |
|
System.Double |
z |
|
Properties
DisplayDetail
Declaration
public override string DisplayDetail { get; }
Property Value
Type |
Description |
System.String |
|
Overrides
StringPlaceholderValue
Gets the string placeholder value, which is the rotation vector in [x,y,z] format.
Declaration
public override object StringPlaceholderValue { get; }
Property Value
Type |
Description |
System.Object |
The string placeholder value.
|
Overrides
X
Rotation around the X axis (radians/second).
Declaration
[DoubleProbeTriggerProperty("X Rotation")]
[Anonymizable]
public double X { get; set; }
Property Value
Type |
Description |
System.Double |
|
Y
Rotation around the Y axis (radians/second).
Declaration
[DoubleProbeTriggerProperty("Y Rotation")]
[Anonymizable]
public double Y { get; set; }
Property Value
Type |
Description |
System.Double |
|
Z
Rotation around the Z axis (radians/second).
Declaration
[DoubleProbeTriggerProperty("Z Rotation")]
[Anonymizable]
public double Z { get; set; }
Property Value
Type |
Description |
System.Double |
|
Methods
ToString()
Declaration
public override string ToString()
Returns
Type |
Description |
System.String |
|
Overrides
Implements