RADouble Structure |
[SerializableAttribute] public struct RADouble : IEquatable<RADouble>
The RADouble type exposes the following members.
| Name | Description | |
|---|---|---|
| RADouble(Double) | Creates the structure with the absolute value absval. | |
| RADouble(Double, Boolean) | Constructs the structure with provided value and the information if it is an absolute or a relative value. |
| Name | Description | |
|---|---|---|
| IsAbsolute | Gets a value indicating whether the value is absolute. | |
| IsRelative | Gets a value indicating whether the value is relative. | |
| Value | Gets the raw value. If the structure holds a relative value, this is the raw value, not the value relative to another. |
| Name | Description | |
|---|---|---|
| Equals(Object) | Indicates whether this instance and a specified object are equal. (Overrides ValueTypeEquals(Object)) | |
| Equals(RADouble) | Indicates whether the current object is equal to another object of the same type. | |
| GetHashCode | Returns the hash code for this instance. (Overrides ValueTypeGetHashCode) | |
| GetType | Gets the Type of the current instance. (Inherited from Object) | |
| GetValueRelativeTo | Gets the value relative to the specified argument. If absolute, returns the stored value; if relative, returns the product of the stored value and r. | |
| NewAbs | Creates a new RADouble with an absolute value. | |
| NewRel | Creates a new RADouble with a relative value. | |
| ToString | Returns the fully qualified type name of this instance. (Inherited from ValueType) |
| Name | Description | |
|---|---|---|
| Equality(RADouble, RADouble) | Determines whether two RADouble instances are equal. | |
| Inequality(RADouble, RADouble) | Determines whether two RADouble instances are not equal. | |
| Multiply(RADouble, Double) | Multiplies the RADouble value by a scale factor. |