[]
Reflects an angle value.
public struct SvgAngle : IEquatable<SvgAngle>
Initializes a new instance of the SvgAngle struct.
public SvgAngle(float value, SvgAngleUnits units = SvgAngleUnits.Unspecified)
value
floatThe value of the angle in specified units.
units
SvgAngleUnitsThe type of angle units.
Represents the Auto value.
public static readonly SvgAngle Auto
Represents the AutoStartReverse value.
public static readonly SvgAngle AutoStartReverse
Represents a zero angle.
public static readonly SvgAngle Zero
Gets or sets the type of angle units.
public SvgAngleUnits Units { get; set; }
Gets or sets the value of this angle in specified units.
public float Value { get; set; }
Determines whether the specified SvgAngle is equal to this instance.
public bool Equals(SvgAngle other)
other
SvgAngleDetermines whether the specified object is equal to this instance.
public override bool Equals(object obj)
obj
objectReturns a hash code for this struct.
public override int GetHashCode()
Returns a string that represents the current struct.
public override string ToString()