|
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.249-beta+56964f8aed6f3f2e54faec1539f7ce0ba6548fdf
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