Click or drag to resize

DegreesMinutesSeconds Structure

Holds information about an angle represented in the Degrees Minutes Seconds format.

Namespace:  AGI.Foundation
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public struct DegreesMinutesSeconds : IComparable<DegreesMinutesSeconds>, 
	IComparable, IEquatable<DegreesMinutesSeconds>, IEquatableEpsilon<DegreesMinutesSeconds>

The DegreesMinutesSeconds type exposes the following members.

Constructors
  NameDescription
Public methodDegreesMinutesSeconds
Create an instance of a DegreesMinutesSeconds angle with parameters
Top
Properties
  NameDescription
Public propertyDegrees
Gets the number of degrees.
Public propertyMinutes
Gets the number of arc minutes.
Public propertyRevolutions
Gets the number of full 360 degree (2 Pi radians) revolutions.
Public propertySeconds
Gets the number of arc seconds.
Top
Methods
  NameDescription
Public methodAdd
Adds the specified DegreesMinutesSeconds to this instance.
Public methodCompareTo(DegreesMinutesSeconds)
Compares this instance with another instance of the same type.
Public methodCompareTo(Object)
Compares this instance with another instance of the same type.
Public methodEquals(DegreesMinutesSeconds)
Indicates whether another instance of this type is exactly equal to this instance.
Public methodEquals(Object)
Indicates whether another object is exactly equal to this instance.
(Overrides ValueTypeEquals(Object).)
Public methodEqualsEpsilon
Indicates whether each DegreesMinutesSeconds value of another instance of this type is within the required tolerance of the corresponding DegreesMinutesSeconds value of this instance.
Public methodGetHashCode
Returns a hash code for this instance, which is suitable for use in hashing algorithms and data structures like a hash table.
(Overrides ValueTypeGetHashCode.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodMultiply
Multiplies this instance by the scalar provided.
Public methodSubtract
Subtracts the specified DegreesMinutesSeconds from this instance.
Public methodToString
Returns the fully qualified type name of this instance.
(Inherited from ValueType.)
Top
Operators
  NameDescription
Public operatorStatic memberAddition
Adds two specified DegreesMinutesSeconds instances.
Public operatorStatic memberEquality
Returns if the two instances are exactly equal.
Public operatorStatic memberGreaterThan
Returns if left is greater than right.
Public operatorStatic memberGreaterThanOrEqual
Returns if left is greater than or equal to right.
Public operatorStatic memberInequality
Returns if the two instances are not exactly equal.
Public operatorStatic memberLessThan
Returns if left is less than right.
Public operatorStatic memberLessThanOrEqual
Returns if left is less than or equal to right.
Public operatorStatic memberMultiply
Multiplies the DegreesMinutesSeconds by a constant.
Public operatorStatic memberSubtraction
Subtracts a specified DegreesMinutesSeconds from another specified DegreesMinutesSeconds.
Top
Remarks
Note that Minutes and Seconds refer to the arc seconds and arc minutes of this angle, NOT seconds and minutes of time.
See Also