|
AngleUnwrap Method
|
Unwraps a set of
Angle values so a comparable mathematical operation can be applied.
Namespace: GSF.UnitsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.248-beta+a497a19de709fd99e2448886199a2c8824265ddf
Syntaxpublic static IEnumerable<Angle> Unwrap(
IEnumerable<Angle> source
)
Public Shared Function Unwrap (
source As IEnumerable(Of Angle)
) As IEnumerable(Of Angle)
public:
static IEnumerable<Angle>^ Unwrap(
IEnumerable<Angle>^ source
)
static member Unwrap :
source : IEnumerable<Angle> -> IEnumerable<Angle>
GSF.Units.Angle.Unwrap = function(source);
View SourceParameters
- source IEnumerableAngle
- Sequence of Angle values to unwrap.
Return Value
IEnumerableAngleUnwrapped set of
Angle values.
Remarks
For Angles that wrap, e.g., between -180 and +180, this algorithm unwraps the values to make the values mathematically comparable.
See Also