Struct PointF
Represents an ordered pair of x and y coordinates that define a point in a two-dimensional plane.
public struct PointF : IEquatable<PointF>
- Implements
- Inherited Members
Constructors
- PointF(float, float)
Initializes a new instance of the PointF class with the specified coordinates.
Fields
Properties
Methods
- Equals(object)
Compares two PointF objects. The result specifies whether the values of the X and Y properties of the two PointF objects are equal.
- Equals(PointF)
Compares two PointF objects. The result specifies whether the values of the X and Y properties of the two PointF objects are equal.
- GetHashCode()
Generates a hashcode from the X and Y components
- ToString()
Returns a string including the X and Y values
Operators
- operator ==(PointF, PointF)
Compares two PointF objects. The result specifies whether the values of the X and Y properties of the two PointF objects are equal.
- operator !=(PointF, PointF)
Compares two PointF objects. The result specifies whether the values of the X or Y properties of the two PointF objects are unequal.