[]
Represents a point with X and Y coordinates.
public struct SvgPoint : IEquatable<SvgPoint>
Initializes a new instance of the SvgPoint struct.
public SvgPoint(SvgLength x, SvgLength y)
Gets or sets the X-coordinate.
public SvgLength X { get; set; }
Gets or sets the Y-coordinate.
public SvgLength Y { get; set; }
Determines whether the specified SvgPoint is equal to this instance.
public bool Equals(SvgPoint other)
other
SvgPointDetermines 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()